diff options
author | Go MAEDA <maeda@farend.jp> | 2019-03-03 22:31:53 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-03-03 22:31:53 +0000 |
commit | 0f39eec9e0fa3c3a9d3cdf3a5465a4eeede2f2aa (patch) | |
tree | a4021a2fdd90188d20f262e92d204ee2969260aa /app/models/mailer.rb | |
parent | 193b02567b1d889324d8709547b135e14f80d837 (diff) | |
download | redmine-0f39eec9e0fa3c3a9d3cdf3a5465a4eeede2f2aa.tar.gz redmine-0f39eec9e0fa3c3a9d3cdf3a5465a4eeede2f2aa.zip |
"View all issues" link in email reminders points to issues list which does not include issues assigned to a group (#30955).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@17918 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/mailer.rb')
-rw-r--r-- | app/models/mailer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/mailer.rb b/app/models/mailer.rb index 01ab60efd..19c58e281 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -542,7 +542,7 @@ class Mailer < ActionMailer::Base @issues = issues @days = days @issues_url = url_for(:controller => 'issues', :action => 'index', - :set_filter => 1, :assigned_to_id => user.id, + :set_filter => 1, :assigned_to_id => 'me', :sort => 'due_date:asc') mail :to => user, :subject => l(:mail_subject_reminder, :count => issues.size, :days => days) |