Fix updating attendees (do not accidentally set exceptions to thisandfuture)
This commit is contained in:
parent
f7e7df62a2
commit
c7df74d5d0
1 changed files with 1 additions and 1 deletions
|
@ -642,7 +642,7 @@ class kolab_driver extends calendar_driver
|
|||
public function update_attendees(&$event, $attendees)
|
||||
{
|
||||
// for this-and-future updates, merge the updated attendees onto all exceptions in range
|
||||
if (($event['_savemode'] == 'future' && $event['recurrence_id']) || !empty($event['recurrence'])) {
|
||||
if (($event['_savemode'] == 'future' && $event['recurrence_id']) || (!empty($event['recurrence']) && !$event['recurrence_id'])) {
|
||||
if (!($storage = $this->get_calendar($event['calendar'])))
|
||||
return false;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue