This project is archived and is in readonly mode.
TagHelper#escape_once does not recognize &#xHH;
Reported by apeiros | September 18th, 2008 @ 11:42 PM | in 2.x
old:
def escape_once(html)
html.to_s.gsub(/[\"><]|&(?!([a-zA-Z]+|(#\d+));)/) { |special| ERB::Util::HTML_ESCAPE[special] }
end
new:
def escape_once(html)
html.to_s.gsub(/[\"><]|&(?!(?:[a-zA-Z]+|#\d+|#x[\dA-Fa-f]+);)/) { |special| ERB::Util::HTML_ESCAPE[special] }
end
Comments and changes to this ticket
-
apeiros September 18th, 2008 @ 11:43 PM
- Assigned user set to Pratik
-
Pratik September 18th, 2008 @ 11:45 PM
- State changed from new to hold
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
<h2 style="font-size: 14px">Tickets have moved to Github</h2>
The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>