]> source.dussan.org Git - redmine.git/commitdiff
Fixed: Reminder emails shouldn't include archived projects (#1351).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 2 Jun 2008 16:59:15 +0000 (16:59 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 2 Jun 2008 16:59:15 +0000 (16:59 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1483 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/mailer.rb

index aae374268f93b8125e2a5b7a263aede80134a05d..61e5d596cd242476041df5900237aa5e7e693d6b 100644 (file)
@@ -164,7 +164,9 @@ class Mailer < ActionMailer::Base
     project = options[:project] ? Project.find(options[:project]) : nil
     tracker = options[:tracker] ? Tracker.find(options[:tracker]) : nil
     
-    s = ARCondition.new ["#{IssueStatus.table_name}.is_closed = ? AND #{Issue.table_name}.due_date <= ? AND #{Issue.table_name}.assigned_to_id IS NOT NULL", false, days.day.from_now.to_date]
+    s = ARCondition.new ["#{IssueStatus.table_name}.is_closed = ? AND #{Issue.table_name}.due_date <= ?", false, days.day.from_now.to_date]
+    s << "#{Issue.table_name}.assigned_to_id IS NOT NULL"
+    s << "#{Project.table_name}.status = #{Project::STATUS_ACTIVE}"
     s << "#{Issue.table_name}.project_id = #{project.id}" if project
     s << "#{Issue.table_name}.tracker_id = #{tracker.id}" if tracker