From 6666876cf9493962e426583b68443a9191ac9549 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Mon, 23 Nov 2009 14:03:25 -0500 Subject: [PATCH] Fix parse error. --- kronolith/lib/Driver/Resource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kronolith/lib/Driver/Resource.php b/kronolith/lib/Driver/Resource.php index b9af6e63d..5ae79b3a9 100644 --- a/kronolith/lib/Driver/Resource.php +++ b/kronolith/lib/Driver/Resource.php @@ -142,7 +142,7 @@ class Kronolith_Driver_Resource extends Kronolith_Driver_Sql $class = 'Kronolith_Resource_' . $results['resource_type']; if (!class_exists($class)) { - throw new Horde_Exception('Could not load the class definition for ' . $class)); + throw new Horde_Exception('Could not load the class definition for ' . $class); } return new $class($this->_fromDriver($results)); -- 2.11.0