From 1535ac122053a428ca29f8887cb10994e467f1ab Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 20 Jan 2008 09:49:25 +0000 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 --- app/models/mailer.rb | 1 + 1 file changed, 1 insertion(+) 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) -- 2.39.5