diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-02-05 08:55:01 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-02-05 08:55:01 +0000 |
commit | 4d806cc7f5dbdece461b07086bb0f9562ae60707 (patch) | |
tree | c3df9c3b4f80e7ff3516f231909f3090ad1681e0 /app/views | |
parent | 8d0ce6498eff1d6181c0e1c9a4564827952127df (diff) | |
download | redmine-4d806cc7f5dbdece461b07086bb0f9562ae60707.tar.gz redmine-4d806cc7f5dbdece461b07086bb0f9562ae60707.zip |
remove unneeded h() from app/views/repositories/_revisions.html.erb
git-svn-id: http://svn.redmine.org/redmine/trunk@12817 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/repositories/_revisions.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/repositories/_revisions.html.erb b/app/views/repositories/_revisions.html.erb index 844c06500..2a31793eb 100644 --- a/app/views/repositories/_revisions.html.erb +++ b/app/views/repositories/_revisions.html.erb @@ -40,7 +40,7 @@ end %> <td class="checkbox"><%= radio_button_tag('rev', changeset.identifier, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('#cbto-#{line_num+1}').attr('checked',true);") if show_diff && (line_num < revisions.size) %></td> <td class="checkbox"><%= radio_button_tag('rev_to', changeset.identifier, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('#cb-#{line_num}').attr('checked')) {$('#cb-#{line_num-1}').attr('checked',true);}") if show_diff && (line_num > 1) %></td> <td class="committed_on"><%= format_time(changeset.committed_on) %></td> -<td class="author"><%= h truncate(changeset.author.to_s, :length => 30) %></td> +<td class="author"><%= truncate(changeset.author.to_s, :length => 30) %></td> <td class="comments"><%= textilizable(truncate_at_line_break(changeset.comments)) %></td> </tr> <% line_num += 1 %> |