diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-04-29 07:16:39 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-04-29 07:16:39 +0000 |
commit | f49904569d917e4e2a8304fca98906bcecf31d2d (patch) | |
tree | ec8d6dcd67223912a8feb727099bd4cf73419ec3 | |
parent | f48460da4f4397bf31e1ffe45d6e9a7b0e06b467 (diff) | |
download | redmine-f49904569d917e4e2a8304fca98906bcecf31d2d.tar.gz redmine-f49904569d917e4e2a8304fca98906bcecf31d2d.zip |
Merged r5215 from trunk.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.1-stable@5580 e93f8b46-1217-0410-a6f0-8f06a7374b81
-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 4dbf5602d..b956c5b30 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -85,7 +85,7 @@ class Mailer < ActionMailer::Base subject l(:mail_subject_reminder, :count => issues.size, :days => days) body :issues => issues, :days => days, - :issues_url => url_for(:controller => 'issues', :action => 'index', :set_filter => 1, :assigned_to_id => user.id, :sort_key => 'due_date', :sort_order => 'asc') + :issues_url => url_for(:controller => 'issues', :action => 'index', :set_filter => 1, :assigned_to_id => user.id, :sort => 'due_date:asc') render_multipart('reminder', body) end |