aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-02-27 22:40:20 -0500
committerGitHub <noreply@github.com>2018-02-27 22:40:20 -0500
commitea86da84aa89f2e7532dfc9b33ea0b033b56f16c (patch)
treeb54f45a1269a78ce9a741d32d102f56ab634d750 /actionview
parentd004f0acf8bba32a4e6df8dc95824df70560c840 (diff)
parent3efb10f8fb6e143cd4a5970167e6c4b475644bb9 (diff)
downloadrails-ea86da84aa89f2e7532dfc9b33ea0b033b56f16c.tar.gz
rails-ea86da84aa89f2e7532dfc9b33ea0b033b56f16c.tar.bz2
rails-ea86da84aa89f2e7532dfc9b33ea0b033b56f16c.zip
Merge pull request #32131 from bogdanvlviv/fix-new_framework_defaults_6_0
Fix `new_framework_defaults_6_0.rb`
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/form_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb
index 6fd66066c6..afd49286e6 100644
--- a/actionview/lib/action_view/helpers/form_helper.rb
+++ b/actionview/lib/action_view/helpers/form_helper.rb
@@ -610,8 +610,8 @@ module ActionView
# unnecessary unless you support browsers without JavaScript.
# * <tt>:local</tt> - By default form submits are remote and unobtrusive XHRs.
# Disable remote submits with <tt>local: true</tt>.
- # * <tt>:skip_enforcing_utf8</tt> - By default a hidden field named +utf8+
- # is output to enforce UTF-8 submits. Set to true to skip the field.
+ # * <tt>:skip_enforcing_utf8</tt> - If set to true, a hidden input with name
+ # utf8 is not output.
# * <tt>:builder</tt> - Override the object used to build the form.
# * <tt>:id</tt> - Optional HTML id attribute.
# * <tt>:class</tt> - Optional HTML class attribute.