* 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!!! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0ad3557d81
commit
95c78413f9
@ -1,3 +1,10 @@
|
||||
Fri Jul 22 10:35:35 2016 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* 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 <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* template/unicode_norm_gen.tmpl: Remove
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user