diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-06-07 19:36:40 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-06-07 19:36:40 +0000 |
commit | 2db8fbb33cc87075cf212c00f9566db6159d72b9 (patch) | |
tree | 2333976744981757eeb2d071f59e362144fc2d4b /app/views | |
parent | 49108983cb69f00e7adf1544284bd03a1d97e575 (diff) | |
download | redmine-2db8fbb33cc87075cf212c00f9566db6159d72b9.tar.gz redmine-2db8fbb33cc87075cf212c00f9566db6159d72b9.zip |
Merged r16626 (#25212).
git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@16632 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/users/show.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb index 9bb5d6667..14fa080e0 100644 --- a/app/views/users/show.html.erb +++ b/app/views/users/show.html.erb @@ -26,7 +26,7 @@ <h3><%=l(:label_issue_plural)%></h3> <ul> <li><%= link_to l(:label_assigned_issues), - issues_path(:set_filter => 1, :assigned_to_id => @user.id, :sort => 'priority:desc,updated_on:desc') %>: + issues_path(:set_filter => 1, :assigned_to_id => ([@user.id] + @user.group_ids).join("|"), :sort => 'priority:desc,updated_on:desc') %>: <%= Issue.visible.open.assigned_to(@user).count %> <li><%= link_to l(:label_reported_issues), issues_path(:set_filter => 1, :status_id => '*', :author_id => @user.id) %>: |