diff options
author | yemkareems <yemkareems@gmail.com> | 2024-11-13 09:10:35 +0530 |
---|---|---|
committer | yemkareems <yemkareems@gmail.com> | 2024-11-13 09:11:43 +0530 |
commit | 3b336466e41182b6baa28989b3bc2086969ddc9e (patch) | |
tree | 43467550ea76346d2fdc8aff750187889dba916d | |
parent | 1fc1543a8bcffa04f0c4d42ba2252409c8876041 (diff) | |
download | nextcloud-server-backport/38630/stable30.tar.gz nextcloud-server-backport/38630/stable30.zip |
fix: conflicts resolved in apps.php loadDirectorybackport/38630/stable30
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 1a9071aa2d3..d845cdf47c1 100644 --- a/tests/apps.php +++ b/tests/apps.php @@ -14,7 +14,7 @@ function loadDirectory($path): void { return; } - while ($name = readdir($dh)) { + while (($name = readdir($dh)) !== false) { if ($name[0] === '.') { continue; } |