diff options
author | Mario <mario@mariovavti.com> | 2023-08-28 08:11:32 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-08-28 08:11:32 +0000 |
commit | 053a247cc86f9f3a7ab0b393bfec43b3b231f73d (patch) | |
tree | cf2b8b8f8e54f940f86f72b7f114d3f0532c308b /Zotlabs | |
parent | 1426b7a6dc56250bc528c21028975ac9d68a2d95 (diff) | |
download | volse-hubzilla-053a247cc86f9f3a7ab0b393bfec43b3b231f73d.tar.gz volse-hubzilla-053a247cc86f9f3a7ab0b393bfec43b3b231f73d.tar.bz2 volse-hubzilla-053a247cc86f9f3a7ab0b393bfec43b3b231f73d.zip |
work around sabre caldav php warnings
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Cdav.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Zotlabs/Module/Cdav.php b/Zotlabs/Module/Cdav.php index b6d7ff5a3..892f02d10 100644 --- a/Zotlabs/Module/Cdav.php +++ b/Zotlabs/Module/Cdav.php @@ -1087,7 +1087,11 @@ class Cdav extends Controller { $filters['name'] = 'VCALENDAR'; $filters['prop-filters'][0]['name'] = 'VEVENT'; + $filters['prop-filters'][0]['is-not-defined'] = null; + $filters['prop-filters'][0]['param-filters'] = null; + $filters['prop-filters'][0]['text-match'] = null; $filters['comp-filters'][0]['name'] = 'VEVENT'; + $filters['comp-filters'][0]['is-not-defined'] = null; $filters['comp-filters'][0]['time-range']['start'] = $start; $filters['comp-filters'][0]['time-range']['end'] = $end; |