diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-03-07 07:24:46 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-03-07 07:24:46 +0000 |
commit | 8e92ffc191354f15775165762efbbf882f9056a3 (patch) | |
tree | 2ab0cb30bf2debd8de2886735d94cb6211159c4c /app | |
parent | b53b7b1acd957c411c881a73e3b2379b0d79b443 (diff) | |
download | redmine-8e92ffc191354f15775165762efbbf882f9056a3.tar.gz redmine-8e92ffc191354f15775165762efbbf882f9056a3.zip |
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
Diffstat (limited to 'app')
-rw-r--r-- | app/views/common/_diff.html.erb | 4 |
1 files 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 @@ <thead> <tr> <th colspan="4" class="filename"> - <%= h(Redmine::CodesetUtil.to_utf8_by_setting(table_file.file_name)) %> + <%= Redmine::CodesetUtil.to_utf8_by_setting(table_file.file_name) %> </th> </tr> </thead> @@ -40,7 +40,7 @@ <thead> <tr> <th colspan="3" class="filename"> - <%= h(Redmine::CodesetUtil.to_utf8_by_setting(table_file.file_name)) %> + <%= Redmine::CodesetUtil.to_utf8_by_setting(table_file.file_name) %> </th> </tr> </thead> |