aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2008-03-11 07:46:39 +0000
committerRick Olson <technoweenie@gmail.com>2008-03-11 07:46:39 +0000
commit3a17ea9031c32bf3b5817c74bba777ec06c5eb41 (patch)
treede23c7a7ec9623b557e7955805aa3aff6b183ea5 /actionpack/CHANGELOG
parent5483de0cc345772eb22a461c4509a0bd072863a9 (diff)
downloadrails-3a17ea9031c32bf3b5817c74bba777ec06c5eb41.tar.gz
rails-3a17ea9031c32bf3b5817c74bba777ec06c5eb41.tar.bz2
rails-3a17ea9031c32bf3b5817c74bba777ec06c5eb41.zip
Fix nested parameter hash parsing bug. #10797 [thomas.lee]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9010 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 43fb5556f9..3063b26c7c 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fix nested parameter hash parsing bug. #10797 [thomas.lee]
+
* Allow using named routes in ActionController::TestCase before any request has been made. Closes #11273 [alloy]
* Fixed that sweepers defined by cache_sweeper will be added regardless of the perform_caching setting. Instead, control whether the sweeper should be run with the perform_caching setting. This makes testing easier when you want to turn perform_caching on/off [DHH]