##// END OF EJS Templates
Strings as html safe....
Jean-Philippe Lang -
r7767:33f7f5a00d2a
parent child
Show More
@@ -412,9 +412,9 module ApplicationHelper
412 end
412 end
413
413
414 def other_formats_links(&block)
414 def other_formats_links(&block)
415 concat('<p class="other-formats">' + l(:label_export_to))
415 concat('<p class="other-formats">'.html_safe + l(:label_export_to))
416 yield Redmine::Views::OtherFormatsBuilder.new(self)
416 yield Redmine::Views::OtherFormatsBuilder.new(self)
417 concat('</p>')
417 concat('</p>'.html_safe)
418 end
418 end
419
419
420 def page_header_title
420 def page_header_title
General Comments 0
You need to be logged in to leave comments. Login now