Forward savemode when removing a cancelled event
This commit is contained in:
parent
46866e76cc
commit
4d534ea786
1 changed files with 5 additions and 1 deletions
|
@ -602,7 +602,11 @@ class libcalendaring_itip
|
|||
// for CANCEL messages, we can:
|
||||
else if ($method == 'CANCEL') {
|
||||
$title = $this->gettext('itipcancellation');
|
||||
$event_prop = array_filter(array('uid' => $event['uid'], '_instance' => $event['_instance']));
|
||||
$event_prop = array_filter(array(
|
||||
'uid' => $event['uid'],
|
||||
'_instance' => $event['_instance'],
|
||||
'_savemode' => $event['_savemode'],
|
||||
));
|
||||
|
||||
// 1. remove the event from our calendar
|
||||
$button_remove = html::tag('input', array(
|
||||
|
|
Loading…
Add table
Reference in a new issue