forked from extern/egroupware
Backport 31138: Do not send notification when a deleted event is purged
This commit is contained in:
parent
dab86e0dfd
commit
c9c422ad83
@ -1210,7 +1210,12 @@ class calendar_boupdate extends calendar_bo
|
|||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Don't send notification if the event has already been deleted
|
||||||
|
if(!$event['deleted'])
|
||||||
|
{
|
||||||
$this->send_update(MSG_DELETED,$event['participants'],$event);
|
$this->send_update(MSG_DELETED,$event['participants'],$event);
|
||||||
|
}
|
||||||
|
|
||||||
if (!$recur_date || $event['recur_type'] == MCAL_RECUR_NONE)
|
if (!$recur_date || $event['recur_type'] == MCAL_RECUR_NONE)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user