diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-04-23 13:00:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-23 13:00:21 -0400 |
commit | 1168dda8bbd24576e593d7fc5bda36e9fe65a374 (patch) | |
tree | feb97c61bed2141b8c1437ca00b6889cef2851a8 /guides/source | |
parent | 6a4eb3e75eabfe6c00ea60b845b487f70a350222 (diff) | |
parent | 38c42aea29e861b7713d53c043f7d49628a9a7ec (diff) | |
download | rails-1168dda8bbd24576e593d7fc5bda36e9fe65a374.tar.gz rails-1168dda8bbd24576e593d7fc5bda36e9fe65a374.tar.bz2 rails-1168dda8bbd24576e593d7fc5bda36e9fe65a374.zip |
Merge pull request #35928 from flanger001/form-with-does-not-generate-ids-by-default
Make docs on form_with_generates_ids config option match the value
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index e1c9fad232..c315599fb0 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -592,7 +592,7 @@ Defaults to `'signed cookie'`. * `config.action_view.form_with_generates_remote_forms` determines whether `form_with` generates remote forms or not. This defaults to `true`. -* `config.action_view.form_with_generates_ids` determines whether `form_with` generates ids on inputs. This defaults to `true`. +* `config.action_view.form_with_generates_ids` determines whether `form_with` generates ids on inputs. This defaults to `false`. * `config.action_view.default_enforce_utf8` determines whether forms are generated with a hidden tag that forces older versions of Internet Explorer to submit forms encoded in UTF-8. This defaults to `false`. |