From 415e89e4e0fd939670168b41bfc4464ea8577a5f Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Fri, 18 Dec 2009 13:36:48 -0500 Subject: [PATCH] Kronolith_Event#getId() is no longer a function, use the id property directly --- kronolith/lib/Resource/Single.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.11.0