]> source.dussan.org Git - redmine.git/commitdiff
Do not sanitize escaped text in NullFormatter.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 25 Apr 2012 19:49:26 +0000 (19:49 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 25 Apr 2012 19:49:26 +0000 (19:49 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9530 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/wiki_formatting.rb

index f1d8378f55b3235d564cc58dfef16a34551c2f58..6b8301340096311ff85e836d2c5e53b3430d066e 100644 (file)
@@ -151,7 +151,7 @@ module Redmine
           t = CGI::escapeHTML(@text)
           auto_link!(t)
           auto_mailto!(t)
-          simple_format(t)
+          simple_format(t, {}, :sanitize => false)
         end
       end