diff options
author | Mario Vavti <mario@mariovavti.com> | 2020-08-15 13:17:04 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2020-08-15 13:17:04 +0200 |
commit | 393cee661913d8ec5b9d5352faf8e340b9db56b4 (patch) | |
tree | 0d1cddf4da11b616f964642006d4c22db3951741 /Zotlabs/Module | |
parent | d9196bb82a1620c8ec1fe31d4ef7aa7c9f0d771f (diff) | |
download | volse-hubzilla-393cee661913d8ec5b9d5352faf8e340b9db56b4.tar.gz volse-hubzilla-393cee661913d8ec5b9d5352faf8e340b9db56b4.tar.bz2 volse-hubzilla-393cee661913d8ec5b9d5352faf8e340b9db56b4.zip |
$id is expected to be an array with a calendarId and an instanceId for caldav
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Cdav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Cdav.php b/Zotlabs/Module/Cdav.php index ac73b8a5b..d7d57664c 100644 --- a/Zotlabs/Module/Cdav.php +++ b/Zotlabs/Module/Cdav.php @@ -819,7 +819,7 @@ class Cdav extends Controller { return; } - $id = explode(':', $_REQUEST['target'])[0]; + $id = explode(':', $_REQUEST['target']); $ext = 'ics'; $table = 'calendarobjects'; $column = 'calendarid'; |