projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d23d605
)
fix vfs fixes ;)
author
Michael J. Rubinsky
<mrubinsk@horde.org>
Tue, 25 May 2010 14:48:22 +0000
(10:48 -0400)
committer
Michael J. Rubinsky
<mrubinsk@horde.org>
Tue, 25 May 2010 14:48:22 +0000
(10:48 -0400)
VFS hasn't been refactored for H4 directory structure, filename case etc... this breaks loading most vfs drivers.
Wait until package has been restructured/refactored before adding this.
framework/VFS/lib/VFS.php
patch
|
blob
|
history
diff --git
a/framework/VFS/lib/VFS.php
b/framework/VFS/lib/VFS.php
index
6d07a75
..
d8fc0fd
100644
(file)
--- a/
framework/VFS/lib/VFS.php
+++ b/
framework/VFS/lib/VFS.php
@@
-97,7
+97,7
@@
class VFS
*/
static public function factory($driver, $params = array())
{
- $driver = basename(
ucfirst($driver)
);
+ $driver = basename(
$driver
);
$class = __CLASS__ . '_' . $driver;
if (class_exists($class)) {