From 52b4fd865466ee6a7b00aa7511292e02af71ca9b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 8 Oct 2013 07:41:11 +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 08481effa2..a09daf13d5 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]); }