aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-04-26 01:14:17 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-04-26 01:14:17 +0000
commitddd243a9c11b54fd13328a86a34ae997f63cb839 (patch)
treea0aa010a5e7e7410f28097512435c105a09cde2f
parent15f06ea8c25b9570bb86a1b1b06ffe3d598b5710 (diff)
downloadrails-ddd243a9c11b54fd13328a86a34ae997f63cb839.tar.gz
rails-ddd243a9c11b54fd13328a86a34ae997f63cb839.tar.bz2
rails-ddd243a9c11b54fd13328a86a34ae997f63cb839.zip
Pull file from xml value only if it's a Hash. Closes #8190.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6583 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--activesupport/lib/active_support/core_ext/hash/conversions.rb4
-rw-r--r--activesupport/test/core_ext/hash_ext_test.rb6
2 files changed, 8 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/conversions.rb b/activesupport/lib/active_support/core_ext/hash/conversions.rb
index e4103f1cb7..2334bb671b 100644
--- a/activesupport/lib/active_support/core_ext/hash/conversions.rb
+++ b/activesupport/lib/active_support/core_ext/hash/conversions.rb
@@ -173,7 +173,7 @@ module ActiveSupport #:nodoc:
# Turn { :files => { :file => #<StringIO> } into { :files => #<StringIO> } so it is compatible with
# how multipart uploaded files from HTML appear
- if xml_value && xml_value["file"].is_a?(StringIO)
+ if xml_value.is_a?(Hash) && xml_value["file"].is_a?(StringIO)
xml_value["file"]
else
xml_value
@@ -218,4 +218,4 @@ module ActiveSupport #:nodoc:
end
end
end
-end \ No newline at end of file
+end
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb
index ba121cc352..a428fe5061 100644
--- a/activesupport/test/core_ext/hash_ext_test.rb
+++ b/activesupport/test/core_ext/hash_ext_test.rb
@@ -572,6 +572,12 @@ class HashToXmlTest < Test::Unit::TestCase
assert_equal expected, hash.to_xml(@xml_options)
end
end
+
+ def test_empty_string_works_for_typecast_xml_value
+ assert_nothing_raised do
+ Hash.send(:typecast_xml_value, "")
+ end
+ end
end
class QueryTest < Test::Unit::TestCase