mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
fix PHP 8.0 error: Illegal offset type
This commit is contained in:
parent
937a96198c
commit
d9959a6aa0
@ -1356,7 +1356,7 @@ class calendar_groupdav extends Api\CalDAV\Handler
|
|||||||
}
|
}
|
||||||
|
|
||||||
// from now on we deal with exceptions
|
// from now on we deal with exceptions
|
||||||
$org_recurrence = $org_recurrences[$recurrence['recurrence']];
|
$org_recurrence = isset($recurrence['recurrence']) ? $org_recurrences[$recurrence['recurrence']] : null;
|
||||||
if (isset($org_recurrence)) // already existing recurrence
|
if (isset($org_recurrence)) // already existing recurrence
|
||||||
{
|
{
|
||||||
//error_log(__METHOD__.'() setting id #'.$org_recurrence['id']).' for '.$recurrence['recurrence'].' = '.date('Y-m-d H:i:s',$recurrence['recurrence']);
|
//error_log(__METHOD__.'() setting id #'.$org_recurrence['id']).' for '.$recurrence['recurrence'].' = '.date('Y-m-d H:i:s',$recurrence['recurrence']);
|
||||||
|
Loading…
Reference in New Issue
Block a user