mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-17 19:01:04 +01:00
fix PHP 8.0 TypeError: calendar_tracking::track(): Argument #2 ($old) must be of type ?array, bool given
This commit is contained in:
parent
9ebc809c76
commit
1e8287ab8b
@ -1584,7 +1584,7 @@ class calendar_boupdate extends calendar_bo
|
||||
$save_event[$ts] = $save_event[$ts]->format('ts');
|
||||
}
|
||||
}
|
||||
$tracking->track($save_event, $old_event);
|
||||
$tracking->track($save_event, $old_event ?: null);
|
||||
|
||||
return $cal_id;
|
||||
}
|
||||
@ -1825,7 +1825,7 @@ class calendar_boupdate extends calendar_bo
|
||||
if (($event = $this->read($cal_id, $recur_date, $ignore_acl, 'server')))
|
||||
{
|
||||
$tracking = new calendar_tracking($this);
|
||||
$tracking->track($event, $old_event);
|
||||
$tracking->track($event, $old_event ?: null);
|
||||
}
|
||||
// notify the link-class about the update, as other apps may be subscribed to it
|
||||
Link::notify_update('calendar', $cal_id, $event, "update");
|
||||
|
Loading…
Reference in New Issue
Block a user