From b32cfd5dc3df072657d76f77a23413461aecfa2c Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Sun, 2 Oct 2016 17:16:21 +0200 Subject: [PATCH] [index] Explicitly define DEBUG with Boolean value --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 45a0657b..9cb9251f 100644 --- a/index.php +++ b/index.php @@ -41,7 +41,7 @@ if(file_exists('DEBUG')){ if($debug_enabled){ ini_set('display_errors', '1'); error_reporting(E_ALL); - define('DEBUG', 'true'); + define('DEBUG', true); } }