aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorSam Stephenson <sam@37signals.com>2006-04-19 18:08:15 +0000
committerSam Stephenson <sam@37signals.com>2006-04-19 18:08:15 +0000
commit9d8e34808f0d20d4bbc1cfb0cdf294b35d8bd224 (patch)
treec0b84c2ead758be6b18292ebcfc2001de06903b4 /actionpack/CHANGELOG
parent2a2afca0955fa43a0796d727399f30a2c09bfc5d (diff)
downloadrails-9d8e34808f0d20d4bbc1cfb0cdf294b35d8bd224.tar.gz
rails-9d8e34808f0d20d4bbc1cfb0cdf294b35d8bd224.tar.bz2
rails-9d8e34808f0d20d4bbc1cfb0cdf294b35d8bd224.zip
Change link_to_function and button_to_function to (optionally) take an update_page block instead of a JavaScript string. Closes #4804.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4235 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 79e1bd1040..33f6b2a80d 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Change link_to_function and button_to_function to (optionally) take an update_page block instead of a JavaScript string. Closes #4804. [zraii@comcast.net, Sam Stephenson]
+
* 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]