diff options
author | yemkareems <yemkareems@gmail.com> | 2024-11-12 18:46:45 +0530 |
---|---|---|
committer | yemkareems <yemkareems@gmail.com> | 2024-11-13 08:34:39 +0530 |
commit | 051af1a8b99b82d08a7a8c69bd5d9cbc666e91ce (patch) | |
tree | 48a8318469bfd8f20851a85b6f8cb5086a8f813f | |
parent | ce3cec9681c49050c133751eab865183c908291f (diff) | |
download | nextcloud-server-backport/38630/stable29.tar.gz nextcloud-server-backport/38630/stable29.zip |
fix: conflicts resolved in apps.php loadDirectorybackport/38630/stable29
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; } |