diff --git a/app/views/repositories/_dir_list.rhtml b/app/views/repositories/_dir_list.rhtml
index 9a785f8..0e5b712 100644
--- a/app/views/repositories/_dir_list.rhtml
+++ b/app/views/repositories/_dir_list.rhtml
@@ -3,8 +3,9 @@
<% total_size = 0
@@ -13,8 +14,10 @@
<%= link_to h(entry.name), { :action => (entry.is_dir? ? 'browse' : 'revisions'), :id => @project, :path => entry.path, :rev => @rev }, :class => ("icon " + (entry.is_dir? ? 'icon-folder' : 'icon-file')) %> |
<%= number_to_human_size(entry.size) unless entry.is_dir? %> |
<%= link_to entry.lastrev.identifier, :action => 'revision', :id => @project, :rev => entry.lastrev.identifier %> |
-<%=h entry.lastrev.author %> |
<%= format_time(entry.lastrev.time) %> |
+<%=h entry.lastrev.author %> |
+<% changeset = @project.repository.changesets.find_by_revision(entry.lastrev.identifier) %>
+<%=h truncate(changeset.comments, 100) unless changeset.nil? %> |
<% total_size += entry.size
end %>