diff options
author | yemkareems <yemkareems@gmail.com> | 2024-11-12 18:44:13 +0530 |
---|---|---|
committer | yemkareems <yemkareems@gmail.com> | 2024-11-12 18:44:13 +0530 |
commit | 13bfa5f0d03936d848c2ed82ecf5af13935d5c53 (patch) | |
tree | fb332857b2fcd04b1480aa573c7964b76f3e4ce1 | |
parent | 0f27494a685fff65c6eb49d15731f7f37de7c1b6 (diff) | |
download | nextcloud-server-backport/38630/stable28.tar.gz nextcloud-server-backport/38630/stable28.zip |
fix: conflicts resolved in apps.php loadDirectorybackport/38630/stable28
Signed-off-by: yemkareems <yemkareems@gmail.com>
-rw-r--r-- | tests/apps.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/apps.php b/tests/apps.php index cd173fff5d5..dba0b2618d2 100644 --- a/tests/apps.php +++ b/tests/apps.php @@ -19,7 +19,7 @@ function loadDirectory($path): void { return; } - while ($name = readdir($dh)) { + while (($name = readdir($dh)) !== false) { if ($name[0] === '.') { continue; } |