From 0912797adb120eb4c898df755d4458e8a5dd9c15 Mon Sep 17 00:00:00 2001
From: root <root@postoffice.intern>
Date: Thu, 17 Aug 2023 21:41:52 +0200
Subject: [PATCH 03/13] include/class_listing.inc: Avoid implicit
 array-to-string conversion.

---
 include/class_listing.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/class_listing.inc b/include/class_listing.inc
index 543e363..a713911 100644
--- a/include/class_listing.inc
+++ b/include/class_listing.inc
@@ -1156,7 +1156,7 @@ class listing
             }
 
             if ($_param_count > count($params)) {
-                error_log("ERROR: Number of expected parameters is greater than collected parameters! For match='$match'.");
+                error_log("ERROR: Number of expected parameters is greater than collected parameters! For match='[".implode(', ', $match)."]");
                 continue;
             }
 
-- 
2.39.2

