diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-05-28 01:04:27 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-05-28 01:04:27 +0000 |
commit | 062845b4da06f7025d6190899cde25deb8eaac42 (patch) | |
tree | b28a43a23934e42c34ac82d8d616c0195b95387d /actionpack/CHANGELOG | |
parent | 0b1d6fd9c87fd4a8459b0f560db626bf36a19618 (diff) | |
download | rails-062845b4da06f7025d6190899cde25deb8eaac42.tar.gz rails-062845b4da06f7025d6190899cde25deb8eaac42.tar.bz2 rails-062845b4da06f7025d6190899cde25deb8eaac42.zip |
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]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4371 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 0aad836503..1329927893 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* 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] * follow_redirect doesn't complain about being redirected to the same controller. #5153 [dymo@mk.ukrtelecom.ua] |