From 0f3622c0e9edcbd577135b0b9951437830aa6cfc Mon Sep 17 00:00:00 2001 From: Gunnar Wrobel Date: Mon, 8 Mar 2010 18:24:41 +0100 Subject: [PATCH] MFB: Modifying start date of recurring events does not update start date of the recurrence (kolab/issue3885) --- kronolith/lib/Event.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kronolith/lib/Event.php b/kronolith/lib/Event.php index 116a46e00..df096ad6f 100644 --- a/kronolith/lib/Event.php +++ b/kronolith/lib/Event.php @@ -1799,6 +1799,8 @@ abstract class Kronolith_Event if ($recur !== null && $recur !== '') { if (!isset($this->recurrence)) { $this->recurrence = new Horde_Date_Recurrence($this->start); + } else { + $this->recurrence->setRecurStart($this->start); } if (Horde_Util::getFormData('recur_end_type') == 'date') { if ($end_date = Horde_Util::getFormData('recur_end_date')) { -- 2.11.0