From e4106a580ec5008f7a84be6f412e5d88d7a160cb Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 3 Mar 2005 22:55:14 +0000 Subject: 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 --- .../lib/active_support/core_ext/hash/indifferent_access.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb b/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb index 2353cfaf3b..d8594db739 100644 --- a/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +++ b/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb @@ -1,8 +1,8 @@ class HashWithIndifferentAccess < Hash - def initialize(constructor) + def initialize(constructor = {}) if constructor.is_a?(Hash) super() - update(constructor.symbolize_keys) + update(constructor.stringify_keys) else super(constructor) end @@ -12,7 +12,7 @@ class HashWithIndifferentAccess < Hash def [](key) case key - when Symbol: regular_reader(key) || regular_reader(key.to_s) + when Symbol: regular_reader(key.to_s) || regular_reader(key) when String: regular_reader(key) || regular_reader(key.to_sym) else regular_reader(key) end @@ -21,7 +21,7 @@ class HashWithIndifferentAccess < Hash alias_method :regular_writer, :[]= unless method_defined?(:regular_writer) def []=(key, value) - regular_writer(key.is_a?(String) ? key.to_sym : key, value) + regular_writer(key.is_a?(Symbol) ? key.to_s : key, value) end end -- cgit v1.2.3