aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-03 22:55:14 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-03 22:55:14 +0000
commite4106a580ec5008f7a84be6f412e5d88d7a160cb (patch)
tree2bfa0a1504e9dfdaf223a99329073287cdddb38e /activesupport/CHANGELOG
parente834be75bcbbece8970abad221f21411c5b93a96 (diff)
downloadrails-e4106a580ec5008f7a84be6f412e5d88d7a160cb.tar.gz
rails-e4106a580ec5008f7a84be6f412e5d88d7a160cb.tar.bz2
rails-e4106a580ec5008f7a84be6f412e5d88d7a160cb.zip
Fixed an exception when using Ajax based requests from Safari because Safari appends a \000 to the post body. Symbols can't have \000 in them so indifferent access would throw an exception in the constructor. Indifferent hashes now use strings internally instead. #746 [Tobias Luetke]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@827 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 8e6f05884d..14876558c6 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed an exception when using Ajax based requests from Safari because Safari appends a \000 to the post body. Symbols can't have \000 in them so indifferent access would throw an exception in the constructor. Indifferent hashes now use strings internally instead. #746 [Tobias Luetke]
+
* Added String#to_time and String#to_date for wrapping ParseDate