From 33f7f5a00d2a0519935182956da4f64aa69acba7 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 22 Nov 2011 20:57:20 +0000 Subject: [PATCH] Strings as html safe. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7887 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/application_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index f4ebce99f..764ef002e 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 -- 2.39.5