From ae0fb3e1dab7e140c894a21b15e3cb6e5a364a4b Mon Sep 17 00:00:00 2001 From: Hosteroid Date: Wed, 29 Oct 2025 12:49:40 +0200 Subject: [PATCH] Update Application.php --- core/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Application.php b/core/Application.php index 0fab170..3bf623b 100644 --- a/core/Application.php +++ b/core/Application.php @@ -28,7 +28,7 @@ class Application if ($env === 'production') { // In production, suppress deprecation warnings to prevent header issues - error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); + error_reporting(E_ALL & ~E_DEPRECATED); ini_set('display_errors', '0'); } else { // In development, show all errors including deprecations