[index] Explicitly define DEBUG with Boolean value

This commit is contained in:
logmanoriginal 2016-10-02 17:16:21 +02:00
parent b0784e5a42
commit b32cfd5dc3

View file

@ -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);
}
}