diff --git a/app/views/projects/list_files.rhtml b/app/views/projects/list_files.rhtml
index e02077d..ec4a361 100644
--- a/app/views/projects/list_files.rhtml
+++ b/app/views/projects/list_files.rhtml
@@ -25,15 +25,13 @@
|
<%= link_to(file.filename, {:controller => 'versions', :action => 'download', :id => version, :attachment_id => file},
:title => file.description) %> |
- <%= format_date(file.created_on) %> |
+ <%= format_time(file.created_on) %> |
<%= number_to_human_size(file.filesize) %> |
<%= file.downloads %> |
<%= file.digest %> |
<% if delete_allowed %>
-
<%= link_to_if_authorized image_tag('delete.png'), {:controller => 'versions', :action => 'destroy_file', :id => version, :attachment_id => file}, :confirm => l(:text_are_you_sure), :method => :post %>
-
|
<% end %>