Do not sanitize escaped text in NullFormatter.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9530 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d15ab86459
commit
6d41de61a5
|
@ -151,7 +151,7 @@ module Redmine
|
||||||
t = CGI::escapeHTML(@text)
|
t = CGI::escapeHTML(@text)
|
||||||
auto_link!(t)
|
auto_link!(t)
|
||||||
auto_mailto!(t)
|
auto_mailto!(t)
|
||||||
simple_format(t)
|
simple_format(t, {}, :sanitize => false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue