Fix method name.
authorJan Schneider <jan@horde.org>
Thu, 3 Jun 2010 11:29:06 +0000 (13:29 +0200)
committerJan Schneider <jan@horde.org>
Thu, 3 Jun 2010 11:29:06 +0000 (13:29 +0200)
framework/Core/lib/Horde/Core/Factory/Vfs.php

index c33fd15..64e310d 100644 (file)
@@ -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;