projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69dee76
)
Avoid &new.
author
Gunnar Wrobel
<p@rdus.de>
Thu, 8 Apr 2010 18:30:11 +0000
(20:30 +0200)
committer
Gunnar Wrobel
<p@rdus.de>
Thu, 8 Apr 2010 18:30:11 +0000
(20:30 +0200)
kronolith/lib/Driver/Kolab.php
patch
|
blob
|
history
diff --git
a/kronolith/lib/Driver/Kolab.php
b/kronolith/lib/Driver/Kolab.php
index
73a3858
..
cc0ce5f
100644
(file)
--- 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;