projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afd4129
)
Fix method name.
author
Jan Schneider
<jan@horde.org>
Thu, 3 Jun 2010 11:29:06 +0000
(13:29 +0200)
committer
Jan Schneider
<jan@horde.org>
Thu, 3 Jun 2010 11:29:06 +0000
(13:29 +0200)
framework/Core/lib/Horde/Core/Factory/Vfs.php
patch
|
blob
|
history
diff --git
a/framework/Core/lib/Horde/Core/Factory/Vfs.php
b/framework/Core/lib/Horde/Core/Factory/Vfs.php
index
c33fd15
..
64e310d
100644
(file)
--- 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->get
VFS
Config($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 get
VFS
Config($name = 'horde')
+ public function getConfig($name = 'horde')
{
global $conf;