diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-10-24 03:22:48 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-10-24 03:22:48 +0000 |
commit | d4e35666d12748998a236f165e78eeb61c69a02d (patch) | |
tree | f2c49e983c53588a43265d53730a6b0ec7a060f1 /actionpack/lib/action_view/helpers | |
parent | f7c916ece661ac0d5936ca47f83ebfbf4852a8bb (diff) | |
download | rails-d4e35666d12748998a236f165e78eeb61c69a02d.tar.gz rails-d4e35666d12748998a236f165e78eeb61c69a02d.tar.bz2 rails-d4e35666d12748998a236f165e78eeb61c69a02d.zip |
Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now on. [Rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5347 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_tag_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index ca6d9e1841..d67a5c6f41 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -63,6 +63,8 @@ module ActionView def end_form_tag "</form>" end + + deprecate :end_form_tag, :start_form_tag # Creates a dropdown selection box, or if the <tt>:multiple</tt> option is set to true, a multiple # choice selection box. |