fix vfs fixes ;)
authorMichael J. Rubinsky <mrubinsk@horde.org>
Tue, 25 May 2010 14:48:22 +0000 (10:48 -0400)
committerMichael 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

index 6d07a75..d8fc0fd 100644 (file)
@@ -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)) {