diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-09-18 10:13:28 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-09-18 10:13:28 +0000 |
commit | d604725b409a093baae13711d197c8b15e02c67d (patch) | |
tree | 230b1e7e7585a4cc4ad5803c323a101cec57a879 /app/views/repositories | |
parent | 8b794b5e835501aa6ce5707756264a5b65c8a63c (diff) | |
download | redmine-d604725b409a093baae13711d197c8b15e02c67d.tar.gz redmine-d604725b409a093baae13711d197c8b15e02c67d.zip |
scm: remove unnecessary h() from annotate author (#14931)
Rails3 escapes by default.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12149 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/repositories')
-rw-r--r-- | app/views/repositories/annotate.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/repositories/annotate.html.erb b/app/views/repositories/annotate.html.erb index 3ad9ceac6..210a0c0e5 100644 --- a/app/views/repositories/annotate.html.erb +++ b/app/views/repositories/annotate.html.erb @@ -26,7 +26,7 @@ </td> <td class="author"> <% if revision && revision != previous_revision %> - <%= h(revision.author.to_s.split('<').first) %> + <%= revision.author.to_s.split('<').first %> <% end %> </td> <td class="line-code"><pre><%= line.html_safe %></pre></td> |