"fix for problem discovered by José Luis Gordo Romero <jgordor-AT-gmail.com>"

This commit is contained in:
Ralf Becker 2007-06-20 20:53:54 +00:00
parent 059ca86239
commit e8b71231f3

View File

@ -270,7 +270,7 @@ class bo_tracking
{
foreach($GLOBALS['egw']->accounts->members($assignee,true) as $u)
{
if ($email = $GLOBALS['egw']->accounts->id2name($u,'account_email') && !in_array($email, $email_sent))
if (($email = $GLOBALS['egw']->accounts->id2name($u,'account_email')) && !in_array($email, $email_sent))
{
$this->send_notification($data,$old,$email,$u,'notify_assigned');
$email_sent[] = $email;