From: Jean-Philippe Lang Date: Sun, 20 Jan 2008 09:49:25 +0000 (+0000) Subject: Fixed: when changing the status of an issue, the email subject contains the previous... X-Git-Tag: 0.7.0-RC1~208 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1535ac122053a428ca29f8887cb10994e467f1ab;p=redmine.git Fixed: when changing the status of an issue, the email subject contains the previous status of the issue. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1078 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/mailer.rb b/app/models/mailer.rb index 257f57726..18fbc96b4 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -31,6 +31,7 @@ class Mailer < ActionMailer::Base def issue_edit(journal) issue = journal.journalized + issue.reload recipients issue.recipients # Watchers in cc cc(issue.watcher_recipients - @recipients)