mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
fix returned xml for correct expansion is empty
This commit is contained in:
parent
b4f087e41e
commit
727bd06868
@ -276,9 +276,10 @@ class groupdav_principals extends groupdav_handler
|
||||
{
|
||||
if ($expand_prop['name'] === $prop_name) break;
|
||||
}
|
||||
if ($expand_prop['name'] !== $prop_name || !is_array($expand_prop['val']) || $expand_prop['val'][0]['name'] !== 'href')
|
||||
if ($expand_prop['name'] !== $prop_name || !is_array($expand_prop['val']) ||
|
||||
$expand_prop['val'] && $expand_prop['val'][0]['name'] !== 'href')
|
||||
{
|
||||
$this->groupdav->log('### NO expand-property report for '.$requested_prop['attrs']['name']);
|
||||
$this->groupdav->log('### NO expand-property report for '.$requested_prop['attrs']['name'].' ('.$prop_name.')');
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user