Forráskód Böngészése

[BUGFIX] improper use of single quotes in exception message

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@16777 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew 16 éve
szülő
commit
32a835f4aa
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      library/Zend/Queue.php

+ 1 - 1
library/Zend/Queue.php

@@ -527,7 +527,7 @@ class Zend_Queue implements Countable
              * @see Zend_Queue_Exception
              */
             require_once 'Zend/Queue/Exception.php';
-            throw new Zend_Queue_Exception('$name is not a string');
+            throw new Zend_Queue_Exception("$name is not a string");
         }
 
         if ($this->getAdapter()->isSupported('create')) {