mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
fixed profind depth 0 directly on a resource contains name-part twice
This commit is contained in:
parent
b227e61236
commit
0de2f3c527
@ -126,6 +126,8 @@ class addressbook_groupdav extends groupdav_handler
|
|||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if ($id) $path = dirname($path).'/'; // carddav_name get's added anyway in the callback
|
||||||
|
|
||||||
if ($this->debug) error_log(__METHOD__."($path,".array2string($options).",,$user,$id) filter=".array2string($filter));
|
if ($this->debug) error_log(__METHOD__."($path,".array2string($options).",,$user,$id) filter=".array2string($filter));
|
||||||
|
|
||||||
// check if we have to return the full contact data or just the etag's
|
// check if we have to return the full contact data or just the etag's
|
||||||
|
@ -169,6 +169,8 @@ class calendar_groupdav extends groupdav_handler
|
|||||||
// when trying to request not supported components, eg. VTODO on a calendar collection
|
// when trying to request not supported components, eg. VTODO on a calendar collection
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if ($id) $path = dirname($path).'/'; // caldav_name get's added anyway in the callback
|
||||||
|
|
||||||
if ($this->debug > 1)
|
if ($this->debug > 1)
|
||||||
{
|
{
|
||||||
error_log(__METHOD__."($path,,,$user,$id) filter=".array2string($filter));
|
error_log(__METHOD__."($path,,,$user,$id) filter=".array2string($filter));
|
||||||
|
@ -151,6 +151,8 @@ class infolog_groupdav extends groupdav_handler
|
|||||||
// when trying to request not supported components, eg. VTODO on a calendar collection
|
// when trying to request not supported components, eg. VTODO on a calendar collection
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if ($id) $path = dirname($path).'/'; // caldav_name get's added anyway in the callback
|
||||||
|
|
||||||
if ($this->debug > 1)
|
if ($this->debug > 1)
|
||||||
{
|
{
|
||||||
error_log(__METHOD__."($path,,,$user,$id) filter=".
|
error_log(__METHOD__."($path,,,$user,$id) filter=".
|
||||||
|
Loading…
Reference in New Issue
Block a user