From 795c71f2ee60f53e8b9a6b964700c0245d8ec5f1 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Thu, 16 Mar 2006 20:30:01 +0000 Subject: dasherize the root element when doing to_xml git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3901 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/core_ext/hash/conversions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activesupport/lib/active_support/core_ext/hash/conversions.rb') diff --git a/activesupport/lib/active_support/core_ext/hash/conversions.rb b/activesupport/lib/active_support/core_ext/hash/conversions.rb index 4cd171a6d1..31779e6b20 100644 --- a/activesupport/lib/active_support/core_ext/hash/conversions.rb +++ b/activesupport/lib/active_support/core_ext/hash/conversions.rb @@ -20,7 +20,7 @@ module ActiveSupport #:nodoc: options.reverse_merge!({ :builder => Builder::XmlMarkup.new(:indent => options[:indent]), :root => "hash" }) options[:builder].instruct! unless options.delete(:skip_instruct) - options[:builder].__send__(options[:root]) do + options[:builder].__send__(options[:root].to_s.dasherize) do for key in keys value = self[key] -- cgit v1.2.3