From fe481453c40076cff561c1ce9a2ce8d6428dd58f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Fri, 2 Mar 2012 16:23:10 +0000 Subject: [PATCH] Use #issues_count which is already retrieved. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9055 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/versions/_overview.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/versions/_overview.html.erb b/app/views/versions/_overview.html.erb index a57241158..216d82cda 100644 --- a/app/views/versions/_overview.html.erb +++ b/app/views/versions/_overview.html.erb @@ -15,10 +15,10 @@ <% end %> -<% if version.fixed_issues.count > 0 %> +<% if version.issues_count > 0 %> <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>

- <%= link_to(l(:label_x_issues, :count => version.fixed_issues.count), + <%= link_to(l(:label_x_issues, :count => version.issues_count), project_issues_path(version.project, :status_id => '*', :fixed_version_id => version, :set_filter => 1)) %>   (<%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count),