forked from extern/egroupware
Calendar: If an event moves from the past to the future, send notifications according to preferences
Previously we ignored all notifications, because the event _was_ in the past.
This commit is contained in:
parent
86c9b97e47
commit
ceb014200f
@ -881,7 +881,9 @@ class calendar_boupdate extends calendar_bo
|
||||
}
|
||||
|
||||
// ignore events in the past (give a tolerance of 10 seconds for the script)
|
||||
if($old_event && $this->date2ts($old_event['start']) < ($this->now_su - 10))
|
||||
if($new_event && $this->date2ts($new_event['start']) < ($this->now_su - 10) ||
|
||||
!$new_event && $old_event && $this->date2ts($old_event['start']) < ($this->now_su - 10)
|
||||
)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user