don't show other users file if the filesystem is not index already

This commit is contained in:
Robin Appelman 2012-06-20 11:34:17 +02:00
parent f54ef5a464
commit 13a9ef36fb
1 changed files with 3 additions and 0 deletions

View File

@ -55,6 +55,9 @@ class OC_FileCache_Cached{
$root=OC_Filesystem::getRoot(); $root=OC_Filesystem::getRoot();
} }
$parent=OC_FileCache::getId($path,$root); $parent=OC_FileCache::getId($path,$root);
if($parent==-1){
return array();
}
$query=OC_DB::prepare('SELECT path,name,ctime,mtime,mimetype,size,encrypted,versioned,writable FROM *PREFIX*fscache WHERE parent=? AND (mimetype LIKE ? OR mimetype = ?)'); $query=OC_DB::prepare('SELECT path,name,ctime,mtime,mimetype,size,encrypted,versioned,writable FROM *PREFIX*fscache WHERE parent=? AND (mimetype LIKE ? OR mimetype = ?)');
$result=$query->execute(array($parent, $mimetype_filter.'%', 'httpd/unix-directory'))->fetchAll(); $result=$query->execute(array($parent, $mimetype_filter.'%', 'httpd/unix-directory'))->fetchAll();
if(is_array($result)){ if(is_array($result)){