mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix search results having files from other users
This commit is contained in:
parent
5ef407d1c9
commit
b93b066a42
1 changed files with 6 additions and 3 deletions
|
|
@ -573,14 +573,17 @@ class OC_Filesystem{
|
|||
|
||||
static public function search($query){
|
||||
$files=array();
|
||||
$fakeRootLength=strlen(self::$fakeRoot);
|
||||
$fakeRoot=self::$fakeRoot;
|
||||
$fakeRootLength=strlen($fakeRoot);
|
||||
foreach(self::$storages as $mountpoint=>$storage){
|
||||
$results=$storage->search($query);
|
||||
if(is_array($results)){
|
||||
foreach($results as $result){
|
||||
$file=str_replace('//','/',$mountpoint.$result);
|
||||
$file=substr($file,$fakeRootLength);
|
||||
$files[]=$file;
|
||||
if(substr($file,0,$fakeRootLength)==$fakeRoot){
|
||||
$file=substr($file,$fakeRootLength);
|
||||
$files[]=$file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue