Rails3: use String#html_safe for parse_redmine_links() at ApplicationHelper.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6487 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-08-20 11:16:11 +00:00
parent c941602570
commit 0c30610f4b
1 changed files with 1 additions and 1 deletions

View File

@ -709,7 +709,7 @@ module ApplicationHelper
end
end
end
leading + (link || "#{project_prefix}#{prefix}#{sep}#{identifier}")
(leading + (link || "#{project_prefix}#{prefix}#{sep}#{identifier}")).html_safe
end
end