don't show other users file if the filesystem is not index already
This commit is contained in:
parent
311c2bc0d3
commit
c4d1363419
|
@ -266,6 +266,9 @@ class OC_FileCache{
|
||||||
}
|
}
|
||||||
$path=$root.$path;
|
$path=$root.$path;
|
||||||
$parent=self::getFileId($path);
|
$parent=self::getFileId($path);
|
||||||
|
if($path==-1){
|
||||||
|
return array();
|
||||||
|
}
|
||||||
$query=OC_DB::prepare('SELECT name,ctime,mtime,mimetype,size,encrypted,versioned,writable FROM *PREFIX*fscache WHERE parent=? AND (mimetype LIKE ? OR mimetype = ?)');
|
$query=OC_DB::prepare('SELECT 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)){
|
||||||
|
|
Loading…
Reference in New Issue