diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/repositories/_dir_list_content.html.erb | 2 |
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 %> |