From: Gunnar Wrobel Date: Mon, 8 Mar 2010 17:24:41 +0000 (+0100) Subject: MFB: Modifying start date of recurring events does not update start date of the recur... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0f3622c0e9edcbd577135b0b9951437830aa6cfc;p=horde.git MFB: Modifying start date of recurring events does not update start date of the recurrence (kolab/issue3885) --- 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')) {