##// END OF EJS Templates
Rails3: use String#html_safe for render_issue_subject_with_tree() at IssuesHelper....
Toshi MARUYAMA -
r6376:fc28185f3a81
parent child
Show More
@@ -72,7 +72,7 module IssuesHelper
72 end
72 end
73 s << content_tag('h3', subject)
73 s << content_tag('h3', subject)
74 s << '</div>' * (ancestors.size + 1)
74 s << '</div>' * (ancestors.size + 1)
75 s
75 s.html_safe
76 end
76 end
77
77
78 def render_descendants_tree(issue)
78 def render_descendants_tree(issue)
General Comments 0
You need to be logged in to leave comments. Login now