##// END OF EJS Templates
Rails3: helper: html_safe for JournalsHelper render_notes method...
Toshi MARUYAMA -
r8331:2b2eeb019243
parent child
Show More
@@ -30,7 +30,7 module JournalsHelper
30 { :controller => 'journals', :action => 'edit', :id => journal },
30 { :controller => 'journals', :action => 'edit', :id => journal },
31 :title => l(:button_edit)) if editable
31 :title => l(:button_edit)) if editable
32 end
32 end
33 content << content_tag('div', links.join(' '), :class => 'contextual') unless links.empty?
33 content << content_tag('div', links.join(' ').html_safe, :class => 'contextual') unless links.empty?
34 content << textilizable(journal, :notes)
34 content << textilizable(journal, :notes)
35 css_classes = "wiki"
35 css_classes = "wiki"
36 css_classes << " editable" if editable
36 css_classes << " editable" if editable
General Comments 0
You need to be logged in to leave comments. Login now