diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-08-31 16:58:17 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-08-31 16:58:17 +0000 |
commit | 1faca3a1dd0f21cfbcd38fa522a313c14edd7b6c (patch) | |
tree | 069971654e8ae1d0e0cdac9dc1139885891ec9fc /app/views/my | |
parent | 58c8c1ca9f4515d08204aca21d1d735dd49f611f (diff) | |
download | redmine-1faca3a1dd0f21cfbcd38fa522a313c14edd7b6c.tar.gz redmine-1faca3a1dd0f21cfbcd38fa522a313c14edd7b6c.zip |
Show open issues only in "Reported Issues" on My page (#23472).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@15772 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/my')
-rw-r--r-- | app/views/my/blocks/_issuesreportedbyme.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/my/blocks/_issuesreportedbyme.html.erb b/app/views/my/blocks/_issuesreportedbyme.html.erb index 5b0e5b2d4..91557c035 100644 --- a/app/views/my/blocks/_issuesreportedbyme.html.erb +++ b/app/views/my/blocks/_issuesreportedbyme.html.erb @@ -1,7 +1,7 @@ <% reported_issues = issuesreportedbyme_items %> <h3> <%= link_to l(:label_reported_issues), - issues_path(:set_filter => 1, :status_id => '*', :author_id => 'me', :sort => 'updated_on:desc') %> + issues_path(:set_filter => 1, :status_id => 'o', :author_id => 'me', :sort => 'updated_on:desc') %> (<%= reported_issues.limit(nil).count %>) </h3> |