diff options
Diffstat (limited to 'actionpack/lib/action_controller/cgi_ext')
-rwxr-xr-x | actionpack/lib/action_controller/cgi_ext/cgi_methods.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb b/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb index feab806077..3e65e5cb3a 100755 --- a/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb +++ b/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb @@ -60,15 +60,15 @@ class CGIMethods #:nodoc: def self.parse_formatted_request_parameters(format, raw_post_data) params = case strategy = ActionController::Base.param_parsers[format] - when Proc - strategy.call(raw_post_data) - when :xml_node - node = XmlNode.from_xml(raw_post_data) - { node.node_name => node } - when :xml_simple - XmlSimple.xml_in(raw_post_data, 'ForceArray' => false) - when :yaml - YAML.load(raw_post_data) + when Proc + strategy.call(raw_post_data) + when :xml_simple + XmlSimple.xml_in(raw_post_data, 'ForceArray' => false, :keeproot => true) + when :yaml + YAML.load(raw_post_data) + when :xml_node + node = XmlNode.from_xml(raw_post_data) + { node.node_name => node } end params || {} |