From d5eb20e3b22b67e2fbd90d8fc9ef47804fb8a83c Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Fri, 29 Nov 2013 12:07:19 +0000 Subject: [PATCH] * Infolog/Notification: when notifying asyncronously , make sure possible customfields are read, as search does not supply these this results in an additional read per entry and user to be notified, but avoids duplicate rows in search results and the extra effort to check for customfields and their values for async notification only --- infolog/inc/class.infolog_bo.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/infolog/inc/class.infolog_bo.inc.php b/infolog/inc/class.infolog_bo.inc.php index ee31fcb8a5..9a8176248e 100644 --- a/infolog/inc/class.infolog_bo.inc.php +++ b/infolog/inc/class.infolog_bo.inc.php @@ -1603,6 +1603,7 @@ class infolog_bo // acl, when called for tracking -> get_signature -> merge to resolve possible // infolog specific placeholders in infolog_egw_record self::$ignore_acl = true; + $info = $this->read($info['info_id'], false, 'server',true); $this->tracking->send_notification($info,null,$email,$user,$pref); self::$ignore_acl = false;