From 5497ca1797c60bd0c39c9270ab9ed1b07a752056 Mon Sep 17 00:00:00 2001 From: Fahad Abbas Date: Tue, 19 Dec 2017 17:44:23 +0500 Subject: [PATCH] modified : debug mode was handled wrong --- upload/includes/common.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload/includes/common.php b/upload/includes/common.php index fc52a286..28dc5b4d 100644 --- a/upload/includes/common.php +++ b/upload/includes/common.php @@ -105,9 +105,9 @@ $row = $myquery->Get_Website_Details(); if(!DEVELOPMENT_MODE) { - define('DEBUG_LEVEL', 2); + define('DEBUG_LEVEL', 0); } else { - define('DEBUG_LEVEL',0); + define('DEBUG_LEVEL',2); } switch(DEBUG_LEVEL) {