Fix quotes.
authorJan Schneider <jan@horde.org>
Tue, 24 Nov 2009 22:46:00 +0000 (23:46 +0100)
committerJan Schneider <jan@horde.org>
Tue, 24 Nov 2009 23:05:05 +0000 (00:05 +0100)
kronolith/lib/Resource/Base.php

index 8fa82de..60a5f81 100644 (file)
@@ -106,7 +106,7 @@ abstract class Kronolith_Resource_Base
             return ($this instanceof Kronolith_Resource_Single) ? 'Single' : 'Group';
         }
         if (!array_key_exists($property, $this->_params)) {
-            throw new Horde_Exception(sprintf("The property \'%s\' does not exist", $property));
+            throw new Horde_Exception(sprintf('The property \'%s\' does not exist', $property));
         }
         return $this->_params[$property];
     }