diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-17 12:07:37 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-17 12:07:37 +0000 |
commit | e7b42487577a057582554e420057e6ce1bdd384d (patch) | |
tree | 9cf452ccc77a714409544c5f92fa24d7bac903f1 /app/views/files | |
parent | 5e5ab1eac4044952d2a55e65eb043817cfc7b3cf (diff) | |
download | redmine-e7b42487577a057582554e420057e6ce1bdd384d.tar.gz redmine-e7b42487577a057582554e420057e6ce1bdd384d.zip |
remove trailing white-spaces from app/views/files/index.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7341 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/files')
-rw-r--r-- | app/views/files/index.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/files/index.html.erb b/app/views/files/index.html.erb index 0844fa355..a1b884850 100644 --- a/app/views/files/index.html.erb +++ b/app/views/files/index.html.erb @@ -16,7 +16,7 @@ <th></th> </tr></thead> <tbody> -<% @containers.each do |container| %> +<% @containers.each do |container| %> <% next if container.attachments.empty? -%> <% if container.is_a?(Version) -%> <tr> @@ -25,7 +25,7 @@ </th> </tr> <% end -%> - <% container.attachments.each do |file| %> + <% container.attachments.each do |file| %> <tr class="file <%= cycle("odd", "even") %>"> <td class="filename"><%= link_to_attachment file, :download => true, :title => file.description %></td> <td class="created_on"><%= format_time(file.created_on) %></td> @@ -36,7 +36,7 @@ <%= link_to(image_tag('delete.png'), {:controller => 'attachments', :action => 'destroy', :id => file}, :confirm => l(:text_are_you_sure), :method => :post) if delete_allowed %> </td> - </tr> + </tr> <% end reset_cycle %> <% end %> |