From e8b71231f37023734eb20568f7a872330a2c669b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 20 Jun 2007 20:53:54 +0000 Subject: [PATCH] =?UTF-8?q?"fix=20for=20problem=20discovered=20by=20Jos?= =?UTF-8?q?=C3=A9=20Luis=20Gordo=20Romero=20"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- etemplate/inc/class.bo_tracking.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/inc/class.bo_tracking.inc.php b/etemplate/inc/class.bo_tracking.inc.php index bda7bac188..feefd59f0f 100644 --- a/etemplate/inc/class.bo_tracking.inc.php +++ b/etemplate/inc/class.bo_tracking.inc.php @@ -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;