Patch from christian.binder-AT-freilassing.de: multiple exceptions not working

This commit is contained in:
Ralf Becker 2006-08-21 10:48:40 +00:00
parent be270e82a8
commit 325b1f09ee

View File

@ -693,7 +693,7 @@ class bocal
{ {
foreach((array)$event['recur_exception'] as $exception_ts) foreach((array)$event['recur_exception'] as $exception_ts)
{ {
$have_exception = $search_date_ymd == (int)$this->date2string($exception_ts); if (($have_exception = $search_date_ymd == (int)$this->date2string($exception_ts))) break;
} }
} }
if ($this->debug && ((int) $this->debug > 3 || $this->debug == 'insert_all_repetions' || $this->debug == 'check_move_horizont' || $this->debug == 'insert_all_repitions')) if ($this->debug && ((int) $this->debug > 3 || $this->debug == 'insert_all_repetions' || $this->debug == 'check_move_horizont' || $this->debug == 'insert_all_repitions'))