From: Toshi MARUYAMA Date: Thu, 7 Mar 2013 07:24:46 +0000 (+0000) Subject: remove unnecessary h() from diff filename (#12641) X-Git-Tag: 2.4.0~576 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8e92ffc191354f15775165762efbbf882f9056a3;p=redmine.git 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 --- 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) %>