aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-05-28 23:39:37 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-05-28 23:39:37 +0000
commit140a998de31ed4547e0d21715165f4b338030673 (patch)
tree99b1b2d145cfef351ce49d06e9cda1c459ed404a /actionpack/CHANGELOG
parentd84ba8b8a93330fbd893b809284d3f21c8eb1177 (diff)
downloadrails-140a998de31ed4547e0d21715165f4b338030673.tar.gz
rails-140a998de31ed4547e0d21715165f4b338030673.tar.bz2
rails-140a998de31ed4547e0d21715165f4b338030673.zip
Added :method handling for other verbs to remote_form_tag and remote_form_for [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4374 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 1329927893..bf68e40466 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added :method handling for other verbs to remote_form_tag and remote_form_for [DHH]
+
* Expanded :method option in FormHelper#form_tag to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [DHH]
* Added :method option to UrlHelper#link_to, which allows for using other verbs than GET for the link. This replaces the :post option, which is now deprecated. Example: link_to "Destroy", person_url(:id => person), :method => :delete [DHH]