Index: app/views/projects/index.rhtml =================================================================== --- app/views/projects/index.rhtml redmine 0.8.4 +++ app/views/projects/index.rhtml Adam Patch @@ -11,9 +11,12 @@ <%= textilizable(project.short_description, :project => project) %> <% if @project_tree[project].any? %> -

<%= l(:label_subproject_plural) %>: - <%= @project_tree[project].sort.collect {|subproject| - link_to(h(subproject.name), {:action => 'show', :id => subproject}, :class => (User.current.member_of?(subproject) ? "icon icon-fav" : ""))}.join(', ') %>

+
+ <% @project_tree[project].sort.each do |subproject| %> +

<%= link_to h(subproject.name), {:action => 'show', :id => subproject}, :class => (User.current.member_of?(subproject) ? "icon icon-fav" : "") %>

+ <%= textilizable(subproject.short_description, :project => subproject) %> + <% end %> +
<% end %> <% end %>