diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2017-11-27 11:52:39 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2017-11-27 11:52:39 -0500 |
commit | 21cd5b3031b0c022439a88cb750c1e00cd07f1e3 (patch) | |
tree | 044010f8f0cdda3841988777ca2fee2d90209b7f /actionview/lib/action_view | |
parent | a64be3ea6fae0d5e75cd987d725f71e91571c5cb (diff) | |
download | rails-21cd5b3031b0c022439a88cb750c1e00cd07f1e3.tar.gz rails-21cd5b3031b0c022439a88cb750c1e00cd07f1e3.tar.bz2 rails-21cd5b3031b0c022439a88cb750c1e00cd07f1e3.zip |
Make form_with_generates_ids default value to be false
This will keep the behavior of an application with the defaults of a 4.2
or 5.0 application behaving the same when upgrading to 5.2.
Diffstat (limited to 'actionview/lib/action_view')
-rw-r--r-- | actionview/lib/action_view/helpers/form_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb index f24e83ad9a..6185aa133f 100644 --- a/actionview/lib/action_view/helpers/form_helper.rb +++ b/actionview/lib/action_view/helpers/form_helper.rb @@ -478,7 +478,7 @@ module ActionView mattr_accessor :form_with_generates_remote_forms, default: true - mattr_accessor :form_with_generates_ids, default: true + mattr_accessor :form_with_generates_ids, default: false # Creates a form tag based on mixing URLs, scopes, or models. # |