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

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6479 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-08-20 10:53:25 +00:00
parent d5e5ab5e2f
commit 35239bea28
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ module ApplicationHelper
end
s << ("</li></ul>\n" * ancestors.size)
end
s
s.html_safe
end
def principals_check_box_tags(name, principals)