From a228113f028ad94ee6cf0b5bdee23dddfded40d0 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 8 Oct 2013 07:41:32 +0000 Subject: [PATCH] * CardDAV/Addressbook: fixed all contacts were reported as NOT found and therefore not synchronised --- addressbook/inc/class.addressbook_groupdav.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addressbook/inc/class.addressbook_groupdav.inc.php b/addressbook/inc/class.addressbook_groupdav.inc.php index b1363b6f88..784444d496 100644 --- a/addressbook/inc/class.addressbook_groupdav.inc.php +++ b/addressbook/inc/class.addressbook_groupdav.inc.php @@ -225,7 +225,7 @@ class addressbook_groupdav extends groupdav_handler foreach($contacts as &$contact) { // remove contact from requested multiget ids, to be able to report not found urls - if ($requested_multiget_ids && ($k = array_search($contacts[self::$path_attr], $requested_multiget_ids)) !== false) + if ($requested_multiget_ids && ($k = array_search($contact[self::$path_attr], $requested_multiget_ids)) !== false) { unset($requested_multiget_ids[$k]); }