From 8e92ffc191354f15775165762efbbf882f9056a3 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Thu, 7 Mar 2013 07:24:46 +0000 Subject: [PATCH] remove unnecessary h() from diff filename (#12641) On Rails3, escaping is default. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11544 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/common/_diff.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/common/_diff.html.erb b/app/views/common/_diff.html.erb index 8600164c0..94434fe86 100644 --- a/app/views/common/_diff.html.erb +++ b/app/views/common/_diff.html.erb @@ -10,7 +10,7 @@ - <%= h(Redmine::CodesetUtil.to_utf8_by_setting(table_file.file_name)) %> + <%= Redmine::CodesetUtil.to_utf8_by_setting(table_file.file_name) %> @@ -40,7 +40,7 @@ - <%= h(Redmine::CodesetUtil.to_utf8_by_setting(table_file.file_name)) %> + <%= Redmine::CodesetUtil.to_utf8_by_setting(table_file.file_name) %> -- 2.39.5