- in function findDirs() just skip if a directory cannot be read instead of returning the list till this dir, fixes #611
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
@@ -48,7 +48,9 @@ function findDirs($path, $uid, $gid)
|
|||||||
|
|
||||||
if(!is_readable($path))
|
if(!is_readable($path))
|
||||||
{
|
{
|
||||||
return $_fileList;
|
//return $_fileList;
|
||||||
|
// only 'skip' this directory, #611
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$dh = opendir($path);
|
$dh = opendir($path);
|
||||||
|
|||||||
Reference in New Issue
Block a user