From: Jan Schneider Date: Tue, 24 Nov 2009 22:46:00 +0000 (+0100) Subject: Fix quotes. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=cb95644cdaa180faf92c1850439ca024de730ad0;p=horde.git Fix quotes. --- diff --git a/kronolith/lib/Resource/Base.php b/kronolith/lib/Resource/Base.php index 8fa82de2e..60a5f81bf 100644 --- a/kronolith/lib/Resource/Base.php +++ b/kronolith/lib/Resource/Base.php @@ -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]; }