From: Toshi MARUYAMA Date: Fri, 23 Sep 2011 07:02:54 +0000 (+0000) Subject: code layout clean up of reminder() at app/models/mailer.rb X-Git-Tag: 1.3.0~506 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4c389d4100838c2fd20d1a1b6cb160c750f9155a;p=redmine.git 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 --- 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