mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 16:33:17 +01:00
* CalDAV/CardDAV: fixed not working propfind-request to single resource in calendar/addressbook collection
This commit is contained in:
parent
2d88f9db75
commit
29b8cc5d5c
@ -208,6 +208,10 @@ class addressbook_groupdav extends groupdav_handler
|
||||
// detect sync-collection report
|
||||
$sync_collection_report = isset($filter[0]) && strpos($filter[0], 'contact_modified>') === 0;
|
||||
|
||||
if (isset($filter_in[self::$path_attr]) && !is_array($filter_in[self::$path_attr]))
|
||||
{
|
||||
$filter_in[self::$path_attr] = (array)$filter_in[self::$path_attr];
|
||||
}
|
||||
$requested_multiget_ids =& $filter_in[self::$path_attr];
|
||||
|
||||
$files = array();
|
||||
|
@ -263,7 +263,7 @@ class calendar_groupdav extends groupdav_handler
|
||||
$filter['offset'] = $start[0];
|
||||
$filter['num_rows'] = $start[1];
|
||||
}
|
||||
$requested_multiget_ids = $filter['query'][self::$path_attr];
|
||||
$requested_multiget_ids = (array)$filter['query'][self::$path_attr];
|
||||
$sync_collection = strpos($filter['query'][0],'cal_modified>') === 0 && $filter['filter'] == 'everything';
|
||||
|
||||
$events =& $this->bo->search($filter);
|
||||
|
@ -254,7 +254,7 @@ class infolog_groupdav extends groupdav_handler
|
||||
$offset = 0;
|
||||
}
|
||||
|
||||
$requested_multiget_ids = $filter[self::$path_attr];
|
||||
$requested_multiget_ids = (array)$filter[self::$path_attr];
|
||||
|
||||
$files = array();
|
||||
// ToDo: add parameter to only return id & etag
|
||||
|
Loading…
Reference in New Issue
Block a user