Browse Source

Fixed bug introduced in 16585. $config was changed to , but not everywhere

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17218 44c647ce-9c0f-0410-b52a-842ac1e357ba
danlo 16 years ago
parent
commit
75f170cf0e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      library/Zend/Queue/Adapter/Memcacheq.php

+ 1 - 1
library/Zend/Queue/Adapter/Memcacheq.php

@@ -307,7 +307,7 @@ class Zend_Queue_Adapter_Memcacheq extends Zend_Queue_Adapter_AdapterAbstract
             require_once 'Zend/Loader.php';
             Zend_Loader::loadClass($classname);
         }
-        return new $classname($config);
+        return new $classname($options);
     }
 
     /**