diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-03-17 17:31:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-03-17 17:31:02 +0000 |
commit | ec378bb4469ce6407663c67b3a352744f9b3bbfb (patch) | |
tree | bd4bdc0d341d4c335f90ac8d283e9dadbe39f544 /app/views | |
parent | f0c676d3df2c2f78aca79c9adfff80823fa48132 (diff) | |
download | redmine-ec378bb4469ce6407663c67b3a352744f9b3bbfb.tar.gz redmine-ec378bb4469ce6407663c67b3a352744f9b3bbfb.zip |
Makes the 'View all' link on 'Reported issues' list open and closed issues.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2597 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/my/blocks/_issuesreportedbyme.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/my/blocks/_issuesreportedbyme.rhtml b/app/views/my/blocks/_issuesreportedbyme.rhtml index affaa1e76..b3f4954f4 100644 --- a/app/views/my/blocks/_issuesreportedbyme.rhtml +++ b/app/views/my/blocks/_issuesreportedbyme.rhtml @@ -7,7 +7,7 @@ :order => "#{Issue.table_name}.updated_on DESC") %> <%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %> <% if reported_issues.length > 0 %> -<p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :set_filter => 1, :author_id => 'me' %></p> +<p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :set_filter => 1, :status_id => '*', :author_id => 'me' %></p> <% end %> <% content_for :header_tags do %> |