From: Gunnar Wrobel
Date: Thu, 8 Apr 2010 18:30:11 +0000 (+0200) Subject: Avoid &new. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=98f6de49c05120854952d91ff6eac7833b71a565;p=horde.git Avoid &new. --- diff --git a/kronolith/lib/Driver/Kolab.php b/kronolith/lib/Driver/Kolab.php index 73a385870..cc0ce5f7d 100644 --- a/kronolith/lib/Driver/Kolab.php +++ b/kronolith/lib/Driver/Kolab.php @@ -230,10 +230,10 @@ class Kronolith_Driver_Kolab extends Kronolith_Driver 'year' => 9999)); } if (!is_a($startDate, 'Horde_Date')) { - $startDate = &new Horde_Date($startDate); + $startDate = new Horde_Date($startDate); } if (!is_a($endDate, 'Horde_Date')) { - $endDate = &new Horde_Date($endDate); + $endDate = new Horde_Date($endDate); } $startDate = clone $startDate;