aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-07 14:16:05 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-07 14:16:05 +0000
commit75157bbf64571548983892e62fab5789e9ab06d0 (patch)
tree30755f6574a4f54eb3e528163ca75d16793fabc1 /actionpack/CHANGELOG
parentafbf54bc3dc8f9d1aeb670d927097a46e78c1515 (diff)
downloadrails-75157bbf64571548983892e62fab5789e9ab06d0.tar.gz
rails-75157bbf64571548983892e62fab5789e9ab06d0.tar.bz2
rails-75157bbf64571548983892e62fab5789e9ab06d0.zip
Fixed that named routes didn't use the default values for action and possible other parameters #1534 [Nicholas Seckar]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1758 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 87afe5647b..f7f2066936 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed that named routes didn't use the default values for action and possible other parameters #1534 [Nicholas Seckar]
+
* Fixed JavascriptHelper#visual_effect to use camelize such that :blind_up will work #1639 [pelletierm@eastmedia.net]
* Fixed that a SessionRestoreError was thrown if a model object was placed in the session that wasn't available to all controllers. This means that it's no longer necessary to use the 'model :post' work-around in ApplicationController to have a Post model in your session.