diff options
author | wycats <wycats@gmail.com> | 2010-06-27 21:50:15 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-06-27 21:50:33 -0700 |
commit | 6fe424aecaae3683866a1af5605998fa6842a8e0 (patch) | |
tree | 6352c059648b369620b1538ae3c859a3996ed1b6 /actionpack | |
parent | ab96c71a52b7b950fba6090e6a091a1f951eaa44 (diff) | |
download | rails-6fe424aecaae3683866a1af5605998fa6842a8e0.tar.gz rails-6fe424aecaae3683866a1af5605998fa6842a8e0.tar.bz2 rails-6fe424aecaae3683866a1af5605998fa6842a8e0.zip |
Small typo
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index 0e9cb2349f..28ef9a05ef 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -530,7 +530,7 @@ module ActionView returning options.stringify_keys do |html_options| html_options["enctype"] = "multipart/form-data" if html_options.delete("multipart") html_options["action"] = url_for(url_for_options, *parameters_for_url) - html_options["accept-encoding"] = "UTF-8" + html_options["accept-charset"] = "UTF-8" html_options["data-remote"] = true if html_options.delete("remote") end end |