From 137ef2b5423e1cca728eab0157035e47167865f7 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Tue, 25 May 2010 10:48:22 -0400 Subject: [PATCH] fix vfs fixes ;) 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/VFS/lib/VFS.php b/framework/VFS/lib/VFS.php index 6d07a75da..d8fc0fd77 100644 --- 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)) { -- 2.11.0