From 635381a4c853f463200d6673571c9e5aae2f14f8 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Fri, 30 May 2025 10:47:55 +0200 Subject: [PATCH] fix another detail in scandir Signed-off-by: Simon L. --- php/src/Data/ConfigurationManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/src/Data/ConfigurationManager.php b/php/src/Data/ConfigurationManager.php index 9ab92394..dd2a95cd 100644 --- a/php/src/Data/ConfigurationManager.php +++ b/php/src/Data/ConfigurationManager.php @@ -1026,7 +1026,7 @@ class ConfigurationManager return $cc; } // Get rid of dots from the scandir command - $dir = array_diff($dir, array('..', '.')); + $dir = array_diff($dir, array('..', '.', 'readme.md')); foreach ($dir as $id) { $filePath = DataConst::GetCommunityContainersDirectory() . '/' . $id . '/' . $id . '.json'; $fileContents = apcu_fetch($filePath);