diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-07-02 15:32:42 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-07-02 15:32:42 +0000 |
commit | 8687401d6527dc23055f7f7816add05e4be51377 (patch) | |
tree | b0ec13e746e2e8c0d9ede2ecfc97d495c9423562 | |
parent | 7eba6786d3208254169d799e6eadebaa699a4f27 (diff) | |
download | redmine-8687401d6527dc23055f7f7816add05e4be51377.tar.gz redmine-8687401d6527dc23055f7f7816add05e4be51377.zip |
Fixed: trash icon not visible on files list.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@580 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/projects/list_files.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/list_files.rhtml b/app/views/projects/list_files.rhtml index 288afae23..0e4f19d81 100644 --- a/app/views/projects/list_files.rhtml +++ b/app/views/projects/list_files.rhtml @@ -31,7 +31,7 @@ <% if delete_allowed %> <td align="center"> <div class="contextual"> - <%= link_to_if_authorized '', {:controller => 'versions', :action => 'destroy_file', :id => version, :attachment_id => file}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> + <%= 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 %> </div> </td> <% end %> |