mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
Calendar: If an event went from recurring to non-recurring, recurring events could still be displayed
This commit is contained in:
parent
0ab30a1b3a
commit
e9b6553ab4
@ -690,10 +690,10 @@ class calendar_ui
|
||||
if(!$event['recur_type'] || $recurrence_date)
|
||||
{
|
||||
$this->to_client($event);
|
||||
$response->generic('data', array('uid' => 'calendar::'.$event['row_id'], 'data' => $event));
|
||||
$response->generic('data', array('uid' => 'calendar::' . $event['row_id'], 'data' => $event));
|
||||
}
|
||||
// If it's recurring, try to send the next month or so
|
||||
else if($event['recur_type'] )
|
||||
// If it is (or was) recurring, try to send the next month or so
|
||||
if($event['recur_type'] || (!$event['recur_type'] && $old_event['recur_type']))
|
||||
{
|
||||
$this_month = new Api\DateTime('next month');
|
||||
$data = [];
|
||||
@ -711,17 +711,20 @@ class calendar_ui
|
||||
}
|
||||
while($old_rrule->valid() && $occurrence <= $this_month);
|
||||
}
|
||||
$rrule = calendar_rrule::event2rrule($event, true);
|
||||
$rrule->rewind();
|
||||
do
|
||||
if($event['recur_type'])
|
||||
{
|
||||
$occurrence = $rrule->current();
|
||||
$converted = $this->bo->read($event['id'], $occurrence);
|
||||
$this->to_client($converted);
|
||||
$data['calendar::' . $converted['row_id']] = $converted;
|
||||
$rrule->next();
|
||||
$rrule = calendar_rrule::event2rrule($event, true);
|
||||
$rrule->rewind();
|
||||
do
|
||||
{
|
||||
$occurrence = $rrule->current();
|
||||
$converted = $this->bo->read($event['id'], $occurrence);
|
||||
$this->to_client($converted);
|
||||
$data['calendar::' . $converted['row_id']] = $converted;
|
||||
$rrule->next();
|
||||
}
|
||||
while($rrule->valid() && $occurrence <= $this_month);
|
||||
}
|
||||
while($rrule->valid() && $occurrence <= $this_month);
|
||||
|
||||
// Now we have to go through and send each one individually, since client side data can't handle more than one
|
||||
foreach($data as $uid => $cal_data)
|
||||
|
Loading…
Reference in New Issue
Block a user