From d64a387773582207de777316523c0fecd1378cab Mon Sep 17 00:00:00 2001 From: michalsn Date: Fri, 5 Dec 2025 19:59:48 +0100 Subject: [PATCH] fix: disable echo in the preload file fix --- preload.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/preload.php b/preload.php index 9d16bb31554f..288b30b4ef48 100644 --- a/preload.php +++ b/preload.php @@ -101,7 +101,9 @@ public function load(): void } require_once $file[0]; - echo 'Loaded: ' . $file[0] . "\n"; + // Uncomment only for debugging (to inspect which files are included). + // Never use this in production - preload scripts must not generate output. + // echo 'Loaded: ' . $file[0] . "\n"; } } }