diff --git a/calendar/inc/class.bocalupdate.inc.php b/calendar/inc/class.bocalupdate.inc.php index 63c2479f77..a942d84059 100644 --- a/calendar/inc/class.bocalupdate.inc.php +++ b/calendar/inc/class.bocalupdate.inc.php @@ -418,8 +418,8 @@ class bocalupdate extends bocal } $version = $GLOBALS['egw_info']['apps']['calendar']['version']; - // ignore events in the past - if($old_event != False && $this->date2ts($old_event['start']) < $this->now_su) + // ignore events in the past (give a tolerance of 10 seconds for the script) + if($old_event != False && $this->date2ts($old_event['start']) < ($this->now_su - 10)) { return False; }