mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
fix PHP 8.0 error: calendar_boupdate::update(): Argument #6 ($messages) cannot be passed by reference
This commit is contained in:
parent
b3116e09e5
commit
7ac13da96f
@ -984,7 +984,8 @@ class calendar_uiforms extends calendar_ui
|
||||
$exception['recurrence'] += $offset;
|
||||
$exception['reference'] = $event['id'];
|
||||
$exception['uid'] = $event['uid'];
|
||||
$this->bo->update($exception, true, true, true, true, $msg=null, $content['no_notifications']);
|
||||
$msg = null;
|
||||
$this->bo->update($exception, true, true, true, true, $msg, $content['no_notifications']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user