From c8ed36a55c388f1372308246a67df46620503b8f Mon Sep 17 00:00:00 2001 From: Bogomil Shopov Date: Mon, 13 Jun 2011 10:13:49 +0300 Subject: [PATCH] Fixing the Loop in Recurring events --- plugins/calendar/drivers/kolab/kolab_calendar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/calendar/drivers/kolab/kolab_calendar.php b/plugins/calendar/drivers/kolab/kolab_calendar.php index 69854055..a3702484 100644 --- a/plugins/calendar/drivers/kolab/kolab_calendar.php +++ b/plugins/calendar/drivers/kolab/kolab_calendar.php @@ -118,7 +118,7 @@ class kolab_calendar $rec_event['end'] = $rec_end; $events[] = $rec_event; } - else if ($start_ts > $end) // stop loop if out of range + else if ($rec_start > $end) // stop loop if out of range break; } }