Fix parse error.
authorMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 23 Nov 2009 19:03:25 +0000 (14:03 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 23 Nov 2009 19:03:25 +0000 (14:03 -0500)
kronolith/lib/Driver/Resource.php

index b9af6e6..5ae79b3 100644 (file)
@@ -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));