From: Jan Schneider Date: Thu, 3 Jun 2010 11:29:06 +0000 (+0200) Subject: Fix method name. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9aa328f6ea99dd166aafb2b51e85f6cb5a9ead74;p=horde.git Fix method name. --- diff --git a/framework/Core/lib/Horde/Core/Factory/Vfs.php b/framework/Core/lib/Horde/Core/Factory/Vfs.php index c33fd1562..64e310ddd 100644 --- a/framework/Core/lib/Horde/Core/Factory/Vfs.php +++ b/framework/Core/lib/Horde/Core/Factory/Vfs.php @@ -57,7 +57,7 @@ class Horde_Core_Factory_Vfs public function getVfs($scope = 'horde') { if (empty($this->_instances[$scope])) { - $params = $this->getVFSConfig($scope); + $params = $this->getConfig($scope); $this->_instances[$scope] = VFS::factory($params['type'], $params['params']); } @@ -73,7 +73,7 @@ class Horde_Core_Factory_Vfs * and the connection parameters in 'params'. * @throws Horde_Exception */ - public function getVFSConfig($name = 'horde') + public function getConfig($name = 'horde') { global $conf;