aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2006-12-09 05:21:33 +0000
committerNicholas Seckar <nseckar@gmail.com>2006-12-09 05:21:33 +0000
commit6a485c3100090fbf474336802c851b842b8a96f3 (patch)
treeab4121b338acea7e1bb87f3e08d7650f271889cf /activesupport/CHANGELOG
parentd1a2449220303f24da0d70504f5959635730da88 (diff)
downloadrails-6a485c3100090fbf474336802c851b842b8a96f3.tar.gz
rails-6a485c3100090fbf474336802c851b842b8a96f3.tar.bz2
rails-6a485c3100090fbf474336802c851b842b8a96f3.zip
Fix remove_constant to correctly handle constant names of the form "::A::...". References #6720.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5710 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 ac42d9c630..bec1edf6c1 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fix remove_constant to correctly handle constant names of the form "::A::...". References #6720. [Nicholas Seckar]
+
* Fixed Array#to_xml when it contains a series of hashes (each piece would get its own XML declaration) #6610 [thkarcher/cyu]
* Added Time#to_s(:time) which will just return H:M, like 17:44 [DHH]