diff options
author | José Valim <jose.valim@gmail.com> | 2010-06-29 18:02:39 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-06-29 18:02:39 +0200 |
commit | caab17611668ff18a3c8642b2d45b353be5d9691 (patch) | |
tree | 42ea9628667f6f70a3ac2861ba854c6e5403b0b2 | |
parent | dabf74b4950f486075b380f2406ede9fa67606db (diff) | |
download | rails-caab17611668ff18a3c8642b2d45b353be5d9691.tar.gz rails-caab17611668ff18a3c8642b2d45b353be5d9691.tar.bz2 rails-caab17611668ff18a3c8642b2d45b353be5d9691.zip |
Rename _snowman_ to _snowman to be in sync with _method and _csrf_token.
-rw-r--r-- | actionpack/lib/action_view/helpers/form_tag_helper.rb | 2 | ||||
-rw-r--r-- | actionpack/test/template/form_helper_test.rb | 2 | ||||
-rw-r--r-- | actionpack/test/template/form_tag_helper_test.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index 28ef9a05ef..efa1446d96 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -537,7 +537,7 @@ module ActionView def extra_tags_for_form(html_options) snowman_tag = tag(:input, :type => "hidden", - :name => "_snowman_", :value => "☃") + :name => "_snowman", :value => "☃") method = html_options.delete("method").to_s diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index eb6cf92805..4b9e41803f 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -1484,7 +1484,7 @@ class FormHelperTest < ActionView::TestCase def snowman(method = nil) txt = %{<div style="margin:0;padding:0;display:inline">} - txt << %{<input name="_snowman_" type="hidden" value="☃" />} + txt << %{<input name="_snowman" type="hidden" value="☃" />} txt << %{<input name="_method" type="hidden" value="#{method}" />} if method txt << %{</div>} end diff --git a/actionpack/test/template/form_tag_helper_test.rb b/actionpack/test/template/form_tag_helper_test.rb index 75d2773c0a..8a0f352bc0 100644 --- a/actionpack/test/template/form_tag_helper_test.rb +++ b/actionpack/test/template/form_tag_helper_test.rb @@ -12,7 +12,7 @@ class FormTagHelperTest < ActionView::TestCase method = options[:method] txt = %{<div style="margin:0;padding:0;display:inline">} - txt << %{<input name="_snowman_" type="hidden" value="☃" />} + txt << %{<input name="_snowman" type="hidden" value="☃" />} txt << %{<input name="_method" type="hidden" value="#{method}" />} if method txt << %{</div>} end |