aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-11-14 09:08:40 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-11-14 09:08:40 +0000
commitb97ffa2a4fcb59de757745a71a6522662039e634 (patch)
treecd3d971e5551d4066bde957a4bf744fcfed1508a /activesupport/CHANGELOG
parent50ee332c4aa97aa797e814d3ab6ae63a0f8351e2 (diff)
downloadrails-b97ffa2a4fcb59de757745a71a6522662039e634.tar.gz
rails-b97ffa2a4fcb59de757745a71a6522662039e634.tar.bz2
rails-b97ffa2a4fcb59de757745a71a6522662039e634.zip
Hash#to_xml handles keys with the same name as Kernel methods. Closes #6613.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5521 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 402afa237f..432780a94e 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Hash#to_xml handles keys with the same name as Kernel methods. #6613 [Catfish]
+
* Added Time#end_of_day to get 23:59:59 of that day [DHH]
* Don't quote hash keys in Hash#to_json if they're valid JavaScript identifiers. Disable this with ActiveSupport::JSON.unquote_hash_key_identifiers = false if you need strict JSON compliance. [Sam Stephenson]