From: Michael J. Rubinsky Date: Tue, 25 May 2010 14:41:54 +0000 (-0400) Subject: Need VFS::factory() here, singleton is no more... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d23d605333402004eedc03149555166cc400c250;p=horde.git Need VFS::factory() here, singleton is no more... --- diff --git a/framework/Core/lib/Horde/Core/Factory/Vfs.php b/framework/Core/lib/Horde/Core/Factory/Vfs.php index 275da226d..c33fd1562 100644 --- a/framework/Core/lib/Horde/Core/Factory/Vfs.php +++ b/framework/Core/lib/Horde/Core/Factory/Vfs.php @@ -58,7 +58,7 @@ class Horde_Core_Factory_Vfs { if (empty($this->_instances[$scope])) { $params = $this->getVFSConfig($scope); - $this->_instances[$scope] = VFS::singleton($params['type'], $params['params']); + $this->_instances[$scope] = VFS::factory($params['type'], $params['params']); } return $this->_instances[$scope];