summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-03-02 16:23:10 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-03-02 16:23:10 +0000
commitfe481453c40076cff561c1ce9a2ce8d6428dd58f (patch)
treef19ffbcdebba615aedd5ea6750990816a1e65879 /app/views
parent9634fe054ab83d9415ffd4e1f4d22330df1610d4 (diff)
downloadredmine-fe481453c40076cff561c1ce9a2ce8d6428dd58f.tar.gz
redmine-fe481453c40076cff561c1ce9a2ce8d6428dd58f.zip
Use #issues_count which is already retrieved.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9055 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/versions/_overview.html.erb4
1 files 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 @@
</ul>
<% 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)) %>
<p class="progress-info">
- <%= 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)) %>
&nbsp;
(<%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count),