diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-04-30 00:09:57 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-04-30 00:09:57 +0200 |
commit | 327e5d06e12b3ddad0a83a223c1673a4d0dafb15 (patch) | |
tree | d5ae844d7f1498e1552df4cd4ffd4df00b30815b /Zotlabs/Widget | |
parent | 674215e9e6632ac22a1b87f9996f0323f5949d94 (diff) | |
download | volse-hubzilla-327e5d06e12b3ddad0a83a223c1673a4d0dafb15.tar.gz volse-hubzilla-327e5d06e12b3ddad0a83a223c1673a4d0dafb15.tar.bz2 volse-hubzilla-327e5d06e12b3ddad0a83a223c1673a4d0dafb15.zip |
calendar merge: implement single event editing UI
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Cdav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Cdav.php b/Zotlabs/Widget/Cdav.php index c88530c0b..20c70903f 100644 --- a/Zotlabs/Widget/Cdav.php +++ b/Zotlabs/Widget/Cdav.php @@ -22,7 +22,7 @@ class Cdav { $o = ''; - if(argc() == 2 && argv(1) === 'calendar') { + if(argc() <= 3 && argv(1) === 'calendar') { $caldavBackend = new \Sabre\CalDAV\Backend\PDO($pdo); |