Browse Source

Strings as html safe.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7887 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.3.0
Jean-Philippe Lang 12 years ago
parent
commit
33f7f5a00d
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      app/helpers/application_helper.rb

+ 2
- 2
app/helpers/application_helper.rb View File

@@ -412,9 +412,9 @@ module ApplicationHelper
end

def other_formats_links(&block)
concat('<p class="other-formats">' + l(:label_export_to))
concat('<p class="other-formats">'.html_safe + l(:label_export_to))
yield Redmine::Views::OtherFormatsBuilder.new(self)
concat('</p>')
concat('</p>'.html_safe)
end

def page_header_title

Loading…
Cancel
Save