diff --git a/ChangeLog b/ChangeLog index cc062ea3b7..5e27ec0e1f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Fri Jul 22 10:35:35 2016 Kouhei Sutou + + * lib/rexml/attribute.rb (REXML::Attribute#to_string): Fix wrong + entry reference name of double quote. + [Bug#12609][ruby-core:76509] + Patch by Joseph Marrero. Thanks!!! + Fri Jul 22 10:32:13 2016 Martin Duerst * template/unicode_norm_gen.tmpl: Remove diff --git a/lib/rexml/attribute.rb b/lib/rexml/attribute.rb index e9917cf52d..ca5984e178 100644 --- a/lib/rexml/attribute.rb +++ b/lib/rexml/attribute.rb @@ -110,7 +110,7 @@ module REXML # b.to_string # -> "ns:x='y'" def to_string if @element and @element.context and @element.context[:attribute_quote] == :quote - %Q^#@expanded_name="#{to_s().gsub(/"/, '"e;')}"^ + %Q^#@expanded_name="#{to_s().gsub(/"/, '"')}"^ else "#@expanded_name='#{to_s().gsub(/'/, ''')}'" end