Defect #31021 » 0002-Fullwidth-characters-enclosed-in-lt-and-gt.patch
| lib/redmine/wiki_formatting/textile/redcloth3.rb | ||
|---|---|---|
| 1215 | 1215 | |
| 1216 | 1216 |
ALLOWED_TAGS = %w(redpre pre code kbd notextile) |
| 1217 | 1217 |
def escape_html_tags(text) |
| 1218 |
text.gsub!(%r{<(\/?([!\w]+)[^<>\n]*)(>?)}) {|m| ALLOWED_TAGS.include?($2) ? "<#{$1}#{$3}" : "<#{$1}#{'>' unless $3.blank?}" }
|
|
| 1218 |
text.gsub!(%r{<(\/?([!_[[:alnum:]]]+)[^<>\n]*)(>?)}) {|m| ALLOWED_TAGS.include?($2) ? "<#{$1}#{$3}" : "<#{$1}#{'>' unless $3.blank?}" }
|
|
| 1219 | 1219 |
end |
| 1220 | 1220 |
end |