Fixed: watchers should be notified even if they uncheck 'mail notifications'

git-svn-id: http://redmine.rubyforge.org/svn/trunk@724 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2007-09-11 18:13:32 +00:00
parent 74ed14f8a2
commit 29348fafb7
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ module Redmine
end
def watcher_recipients
self.watchers.collect { |w| w.user.mail if w.user.mail_notification }.compact
self.watchers.collect { |w| w.user.mail }
end
module ClassMethods