mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 02:43:22 +01:00
fix PHP 8.0 error: calendar_boupdate::update(): Argument #6 ($messages) cannot be passed by reference
This commit is contained in:
parent
bf20b21a6a
commit
ef0964b3d8
@ -984,7 +984,8 @@ class calendar_uiforms extends calendar_ui
|
|||||||
$exception['recurrence'] += $offset;
|
$exception['recurrence'] += $offset;
|
||||||
$exception['reference'] = $event['id'];
|
$exception['reference'] = $event['id'];
|
||||||
$exception['uid'] = $event['uid'];
|
$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