From 3f5c03f91a64777a79e13416c200ba3e155a2666 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 14 Mar 2008 15:37:33 +0000 Subject: [PATCH] "removed double include of mounted dirs in egw_vfs::find" --- phpgwapi/inc/class.egw_vfs.inc.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/phpgwapi/inc/class.egw_vfs.inc.php b/phpgwapi/inc/class.egw_vfs.inc.php index 7b93ffc92d..0ef705816b 100644 --- a/phpgwapi/inc/class.egw_vfs.inc.php +++ b/phpgwapi/inc/class.egw_vfs.inc.php @@ -314,18 +314,6 @@ class egw_vfs extends vfs_stream_wrapper { $base = array($base); } - foreach($base as $path) - { - // check our fstab if we need to add some of the mountpoints - $basepath = parse_url($path,PHP_URL_PATH); - foreach(self::$fstab as $mounted => $src_url) - { - if (dirname($mounted) == $basepath) - { - $base[] = $mounted; - } - } - } $result = array(); foreach($base as $path) {