From b1427273d8d1679aec87644698e90ce5b61eb318 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 26 May 2011 17:17:01 +0000 Subject: [PATCH] skip notifications, as AS clients do their own notifications --- calendar/inc/class.calendar_activesync.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/calendar/inc/class.calendar_activesync.inc.php b/calendar/inc/class.calendar_activesync.inc.php index a6ee65b47f..c92b487fa1 100644 --- a/calendar/inc/class.calendar_activesync.inc.php +++ b/calendar/inc/class.calendar_activesync.inc.php @@ -540,7 +540,8 @@ return array(); // temporary disabling meeting requests from calendar $event = $this->message2event($message, $account, $event); - if (!($id = $this->calendar->update($event,true))) // true = ignore conflicts + // store event, ignore conflicts and skip notifications, as AS clients do their own notifications + if (!($id = $this->calendar->update($event,$ignore_conflicts=true,$touch_modified=true,$ignore_acl=false,$updateTS=true,$messages=null, $skip_notification=true))) { debugLog(__METHOD__."('$folderid',$id,...) error saving event=".array2string($event)."!"); return false;