diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-03-21 20:08:16 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-03-21 20:08:16 +0000 |
commit | 95c7140cdfc5d32427f642c589c3ddbf291b8ede (patch) | |
tree | e3fd7892f4f2b46c145a341ffbd5dc92548147fa /app/views/versions | |
parent | 53ad42e1d8417b93500c7d4a3108c5c48c7edc61 (diff) | |
download | redmine-95c7140cdfc5d32427f642c589c3ddbf291b8ede.tar.gz redmine-95c7140cdfc5d32427f642c589c3ddbf291b8ede.zip |
Show open and closed issues from "Issues by" version links.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5187 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r-- | app/views/versions/_issue_counts.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/versions/_issue_counts.rhtml b/app/views/versions/_issue_counts.rhtml index 38f3edbcb..7ef8c4bce 100644 --- a/app/views/versions/_issue_counts.rhtml +++ b/app/views/versions/_issue_counts.rhtml @@ -19,8 +19,8 @@ :action => 'index', :project_id => version.project, :set_filter => 1, - :fixed_version_id => version, - "#{criteria}_id" => count[:group]} %> + :status_id => '*', + :fixed_version_id => version}.merge("#{criteria}_id".to_sym => count[:group]) %> </td> <td width="240px"> <%= progress_bar((count[:closed].to_f / count[:total])*100, |