aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-04-16 22:17:59 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-04-16 22:17:59 +0000
commita0e78f7442143c1366de06ec28342ad728870a1c (patch)
tree08dcd02f5becce7f8b07acf93b99380e40d04f93 /activesupport/CHANGELOG
parent7722e2bf6c8bc0e81e61a47809cdbbf52b33ce6b (diff)
downloadrails-a0e78f7442143c1366de06ec28342ad728870a1c.tar.gz
rails-a0e78f7442143c1366de06ec28342ad728870a1c.tar.bz2
rails-a0e78f7442143c1366de06ec28342ad728870a1c.zip
Fixed that parameters from XML should also be presented in a hash with indifferent access [DHH] Hash#with_indifferent_access now also converts hashes kept in arrays to indifferent access (makes it easier to treat HTML and XML parameters the same) [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6532 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index e0108f27bc..55f57b1180 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Hash#with_indifferent_access now also converts hashes kept in arrays to indifferent access (makes it easier to treat HTML and XML parameters the same) [DHH]
+
* Hash#to_xml supports YAML attributes. #7502 [jonathan]
* Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decoding by way of Syck with ActiveSupport::JSON.decode(json_string). Prevent hash keys that are JavaScript reserved words from being unquoted during encoding. [Sam Stephenson]