From: Michael J. Rubinsky Date: Mon, 23 Nov 2009 19:03:25 +0000 (-0500) Subject: Fix parse error. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6666876cf9493962e426583b68443a9191ac9549;p=horde.git Fix parse error. --- 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));