From: Michael J. Rubinsky Date: Fri, 18 Dec 2009 18:36:48 +0000 (-0500) Subject: Kronolith_Event#getId() is no longer a function, use the id property directly X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=415e89e4e0fd939670168b41bfc4464ea8577a5f;p=horde.git Kronolith_Event#getId() is no longer a function, use the id property directly --- diff --git a/kronolith/lib/Resource/Single.php b/kronolith/lib/Resource/Single.php index 4a6283191..8c142c5da 100644 --- a/kronolith/lib/Resource/Single.php +++ b/kronolith/lib/Resource/Single.php @@ -112,7 +112,7 @@ class Kronolith_Resource_Single extends Kronolith_Resource_Base // Event will only be in the calendar if it's been accepted. This error // should never happen, but put it here as a safeguard for now. if (!($re instanceof PEAR_Error)) { - $driver->deleteEvent($re->getId()); + $driver->deleteEvent($re->id); } }