summaryrefslogtreecommitdiffstats
path: root/app/models
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-23 07:02:54 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-23 07:02:54 +0000
commit4c389d4100838c2fd20d1a1b6cb160c750f9155a (patch)
treeae112edb78c69ad63f39aa8214e6ea231738daae /app/models
parentcf7efe3f7d532ffd329c4a5f686cea5adb98fded (diff)
downloadredmine-4c389d4100838c2fd20d1a1b6cb160c750f9155a.tar.gz
redmine-4c389d4100838c2fd20d1a1b6cb160c750f9155a.zip
code layout clean up of reminder() at app/models/mailer.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7467 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r--app/models/mailer.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/models/mailer.rb b/app/models/mailer.rb
index d0dac72c6..76d0874ff 100644
--- a/app/models/mailer.rb
+++ b/app/models/mailer.rb
@@ -85,7 +85,9 @@ 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 => 'due_date: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