replace tabs to spaces at app/views/repositories/show.html.erb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9318 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-04-04 10:19:41 +00:00
parent b96710fb57
commit a5b480c62e
1 changed files with 6 additions and 6 deletions

View File

@ -59,14 +59,14 @@
<% end %>
<% if @repositories.size > 1 %>
<% content_for :sidebar do %>
<h3><%= l(:label_repository_plural) %></h3>
<%= @repositories.sort.collect {|repo|
link_to h(repo.name),
<% content_for :sidebar do %>
<h3><%= l(:label_repository_plural) %></h3>
<%= @repositories.sort.collect {|repo|
link_to h(repo.name),
{:controller => 'repositories', :action => 'show', :id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil},
:class => 'repository' + (repo == @repository ? ' selected' : '')
}.join('<br />').html_safe %></p>
<% end %>
}.join('<br />').html_safe %></p>
<% end %>
<% end %>
<% content_for :header_tags do %>