mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-25 02:34:17 +00:00
Fix a typo in DAV_AllProperties which caused dead properties to be omitted
This commit is contained in:
parent
d459b489ac
commit
fc37b68461
@ -1533,7 +1533,7 @@ EOQRY;
|
|||||||
* Return an array which is an expansion of the DAV::allprop
|
* Return an array which is an expansion of the DAV::allprop
|
||||||
*/
|
*/
|
||||||
function DAV_AllProperties() {
|
function DAV_AllProperties() {
|
||||||
if ( isset($this->dead_properties) ) $this->FetchDeadProperties();
|
if ( !isset($this->dead_properties) ) $this->FetchDeadProperties();
|
||||||
$allprop = array_merge( (isset($this->dead_properties)?$this->dead_properties:array()),
|
$allprop = array_merge( (isset($this->dead_properties)?$this->dead_properties:array()),
|
||||||
(isset($include_properties)?$include_properties:array()),
|
(isset($include_properties)?$include_properties:array()),
|
||||||
array(
|
array(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user