From d7f079e66b7ca3b58c41f522440f471ae382f860 Mon Sep 17 00:00:00 2001 From: Teromene Date: Thu, 17 Mar 2016 14:36:33 +0000 Subject: [PATCH] Modified the debug system to use a file as a trigger instead of a URL parameter. Modified the gitignore accordingly. --- .gitignore | 1 + index.php | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 4c658bf7..9a267f6a 100644 --- a/.gitignore +++ b/.gitignore @@ -226,3 +226,4 @@ pip-log.txt ############## /cache /whitelist.txt +DEBUG diff --git a/index.php b/index.php index 5e9dfbb3..a8f96fc4 100644 --- a/index.php +++ b/index.php @@ -15,11 +15,10 @@ TODO : date_default_timezone_set('UTC'); error_reporting(0); -if(isset($_REQUEST['debug'])) { +if(file_exists("DEBUG")) { ini_set('display_errors','1'); error_reporting(E_ALL); //Report all errors - - $_REQUEST["disable_cache"] = true; //Disable the cache. + define("DEBUG", "true"); } @@ -91,7 +90,7 @@ try{ // Data retrieval $bridge = Bridge::create($bridge); - if(isset($_REQUEST["disable_cache"])) { + if(defined("DEBUG")) { } else { $bridge->setCache($cache); // just add disable cache to your query to disable caching }