0
0
Fork 0
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:
yemkareems 2024-11-12 18:46:45 +05:30
parent ce3cec9681
commit 051af1a8b9
No known key found for this signature in database
GPG key ID: 4293DA00B9478934

View file

@ -19,7 +19,7 @@ function loadDirectory($path): void {
return;
}
while ($name = readdir($dh)) {
while (($name = readdir($dh)) !== false) {
if ($name[0] === '.') {
continue;
}