summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-02-05 08:54:46 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-02-05 08:54:46 +0000
commit8d0ce6498eff1d6181c0e1c9a4564827952127df (patch)
tree227926cd4667950284d5f5cd09e9fa4e5d2cb091 /app/views
parentc7143225304026dcb349de1f9be9e0e8aa475f6d (diff)
downloadredmine-8d0ce6498eff1d6181c0e1c9a4564827952127df.tar.gz
redmine-8d0ce6498eff1d6181c0e1c9a4564827952127df.zip
remove unneeded h() from app/views/repositories/_dir_list_content.html.erb
git-svn-id: http://svn.redmine.org/redmine/trunk@12816 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/repositories/_dir_list_content.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/repositories/_dir_list_content.html.erb b/app/views/repositories/_dir_list_content.html.erb
index e595a77dd..dcee3dfc1 100644
--- a/app/views/repositories/_dir_list_content.html.erb
+++ b/app/views/repositories/_dir_list_content.html.erb
@@ -25,7 +25,7 @@
<td class="revision"><%= link_to_revision(entry.changeset, @repository) if entry.changeset %></td>
<td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td>
<td class="author"><%= entry.author %></td>
-<td class="comments"><%=h truncate(entry.changeset.comments, :length => 50) if entry.changeset %></td>
+<td class="comments"><%= truncate(entry.changeset.comments, :length => 50) if entry.changeset %></td>
<% end %>
</tr>
<% end %>