From 57780bfa37f3269e42b70a0f4296d6af424d7f95 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Wed, 12 Dec 2012 12:13:54 +0100 Subject: fix warning if the size of the Shared-folder gets calculated --- lib/filesystemview.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 3e2cde68a15..7dde0f7bf2b 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -174,7 +174,7 @@ class OC_FilesystemView { return $fsLocal->readdir( $handle ); } public function is_dir($path) { - if($path=='/' || $path == '/Shared') { + if($path=='/') { return true; } return $this->basicOperation('is_dir', $path); -- cgit v1.2.3