From 39e69be95dc9a330146d0b6f397604d8954cdc7b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 16 Jul 2015 10:05:18 +0000 Subject: [PATCH] * Calendar: deleting an event did not honor "Do not notify" checkbox (if enabled) --- calendar/inc/class.calendar_uiforms.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calendar/inc/class.calendar_uiforms.inc.php b/calendar/inc/class.calendar_uiforms.inc.php index 7c85d70337..8e201b2965 100644 --- a/calendar/inc/class.calendar_uiforms.inc.php +++ b/calendar/inc/class.calendar_uiforms.inc.php @@ -941,7 +941,7 @@ class calendar_uiforms extends calendar_ui case 'delete_keep_exceptions': // series and user selected to keep the exceptions case 'delete_exceptions': // series and user selected to delete the exceptions too $exceptions_kept = null; - if ($this->bo->delete($event['id'], (int)$content['edit_single'], false, false, + if ($this->bo->delete($event['id'], (int)$content['edit_single'], false, $event['no_notifications'], $button == 'delete_exceptions', $exceptions_kept)) { if ($event['recur_type'] != MCAL_RECUR_NONE && $content['reference'] == 0 && !$content['edit_single']) @@ -2711,7 +2711,7 @@ class calendar_uiforms extends calendar_ui $response->apply('egw.message', lang('Error'),'error'); } } - + /** * imports a mail as Calendar *