diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2010-08-12 13:32:00 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-08-14 13:17:30 +0200 |
commit | 17a6dfb745d98fcecc3a2af740fee8d7ef27a019 (patch) | |
tree | be0ea0c23a636c6b2d9c75af41d5a29263ab8d1e /actionpack/lib/action_view | |
parent | f8f437191f1cbf37ba842038164c1b873dc453e9 (diff) | |
download | rails-17a6dfb745d98fcecc3a2af740fee8d7ef27a019.tar.gz rails-17a6dfb745d98fcecc3a2af740fee8d7ef27a019.tar.bz2 rails-17a6dfb745d98fcecc3a2af740fee8d7ef27a019.zip |
It's snowing!
Diffstat (limited to 'actionpack/lib/action_view')
-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 c1c5db0302..686c5b7a14 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -538,7 +538,7 @@ module ActionView def extra_tags_for_form(html_options) snowman_tag = tag(:input, :type => "hidden", - :name => "utf8", :value => "✓".html_safe) + :name => "_utf8", :value => "☃".html_safe) method = html_options.delete("method").to_s |