]> source.dussan.org Git - redmine.git/commitdiff
remove unneeded h() from app/views/repositories/_revisions.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 5 Feb 2014 08:55:01 +0000 (08:55 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 5 Feb 2014 08:55:01 +0000 (08:55 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@12817 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/repositories/_revisions.html.erb

index 844c06500ce3c1e212caa12954f801dd0c63a5dd..2a31793eb88a99432b922e1a634c892e10c826b3 100644 (file)
@@ -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"><%= 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 %>