From e5c9d167fedd9d5177b0bad6ecebc30b886ce7a9 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 16 Jul 2015 10:05:57 +0000 Subject: [PATCH] * Calendar: deleting an event did not honor "Do not notify" checkbox (if enabled) --- calendar/inc/class.calendar_uiforms.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/inc/class.calendar_uiforms.inc.php b/calendar/inc/class.calendar_uiforms.inc.php index 29791ef131..77e9f73757 100644 --- a/calendar/inc/class.calendar_uiforms.inc.php +++ b/calendar/inc/class.calendar_uiforms.inc.php @@ -932,7 +932,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'])