mirror of
https://github.com/nextcloud/server.git
synced 2025-02-23 08:28:36 +00:00
fix: conflicts resolved in apps.php loadDirectory
Signed-off-by: yemkareems <yemkareems@gmail.com>
This commit is contained in:
parent
ce3cec9681
commit
051af1a8b9
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ function loadDirectory($path): void {
|
|||
return;
|
||||
}
|
||||
|
||||
while ($name = readdir($dh)) {
|
||||
while (($name = readdir($dh)) !== false) {
|
||||
if ($name[0] === '.') {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue