From 33f7f5a00d2a0519935182956da4f64aa69acba7 2011-11-22 20:57:20 From: Jean-Philippe Lang Date: 2011-11-22 20:57:20 Subject: [PATCH] Strings as html safe. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7887 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index f4ebce9..764ef00 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -412,9 +412,9 @@ module ApplicationHelper end def other_formats_links(&block) - concat('

' + l(:label_export_to)) + concat('

'.html_safe + l(:label_export_to)) yield Redmine::Views::OtherFormatsBuilder.new(self) - concat('

') + concat('

'.html_safe) end def page_header_title