aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-04-16 19:06:23 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-04-16 19:06:23 +0000
commitce577e984e88788ad4630c1473fd44b365ac83b6 (patch)
treef89c10b21e41240da7762c518f584f20523efd90 /actionpack/CHANGELOG
parent7cc446acf49ffdec6d832bc90fe48e1f2f8683cf (diff)
downloadrails-ce577e984e88788ad4630c1473fd44b365ac83b6.tar.gz
rails-ce577e984e88788ad4630c1473fd44b365ac83b6.tar.bz2
rails-ce577e984e88788ad4630c1473fd44b365ac83b6.zip
Fixed that remote_form_for can leave out the object parameter and default to the instance variable of the object_name, just like form_for [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4215 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 2ed9681459..aca6e9b5fd 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed that remote_form_for can leave out the object parameter and default to the instance variable of the object_name, just like form_for [DHH]
+
* Modify routing so that you can say :require => { :method => :post } for a route, and the route will never be selected unless the request method is POST. Only works for route recognition, not for route generation. [Jamis Buck]
* Added :add_headers option to verify which merges a hash of name/value pairs into the response's headers hash if the prerequisites cannot be satisfied. [Sam Stephenson]