From dc4b5cff39a532107354f55f292617ed7250cf6d Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 7 Mar 2006 04:42:13 +0000 Subject: XmlSimple _should_ be the default since XmlNode is not compatible with regular parameters -- also known as Why Did My Etech Demo Not Work? [DHH] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3806 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../lib/action_controller/cgi_ext/cgi_methods.rb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'actionpack/lib/action_controller/cgi_ext/cgi_methods.rb') 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 || {} -- cgit v1.2.3