From e9526b1353df701b056ff802db532c2d91f04f51 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Sat, 8 May 2010 11:44:55 -0400 Subject: [PATCH] Enforce that exceptions are not recurring --- kronolith/lib/Event.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kronolith/lib/Event.php b/kronolith/lib/Event.php index aaf3f32d2..f2bc69d5b 100644 --- a/kronolith/lib/Event.php +++ b/kronolith/lib/Event.php @@ -1655,7 +1655,8 @@ abstract class Kronolith_Event public function recurs() { return isset($this->recurrence) && - !$this->recurrence->hasRecurType(Horde_Date_Recurrence::RECUR_NONE); + !$this->recurrence->hasRecurType(Horde_Date_Recurrence::RECUR_NONE) && + empty($this->baseid); } /** -- 2.11.0