This project is archived and is in readonly mode.

#1073 ✓hold
apeiros

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

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>

People watching this ticket

Pages