From 1535ac122053a428ca29f8887cb10994e467f1ab 2008-01-20 09:49:25 From: Jean-Philippe Lang Date: 2008-01-20 09:49:25 Subject: [PATCH] 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 257f577..18fbc96 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)