X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=debug.php;h=8dfc9d42c3907b98c78bb9face4d506a3abc46ea;hp=39248d2dfdef003bf8f0dd1367fddaf8598d5973;hb=e1d636846bafc8ae71855595a2a2843463025e26;hpb=a090e351c49fe021fb3064325694da03402332e0 diff --git a/debug.php b/debug.php index 39248d2dfd..8dfc9d42c3 100644 --- a/debug.php +++ b/debug.php @@ -36,19 +36,15 @@ * MA 02110-1301 USA * ************************************************************************/ -// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) ) +// Load security stuff here require('inc/libs/security_functions.php'); -// Init "action" and "what" -$GLOBALS['what'] = ''; -$GLOBALS['action'] = ''; - // Set module and fake "CSS mode" $GLOBALS['module'] = 'debug'; $GLOBALS['output_mode'] = -1; // Load the required file(s) -require('inc/config.php'); +require('inc/config-global.php'); // Redirect only to registration page when this script is installed if ((isInstalled()) && (getTotalFatalErrors() == 0)) { @@ -64,14 +60,14 @@ if ((isInstalled()) && (getTotalFatalErrors() == 0)) { if (DEBUG_HANDLE_REQUEST(REQUEST_POST('request'))) { // Construct FQFN for the module $INC = sprintf("inc/debug/%s/request_%s", - getConfig('debug_mode'), - SQL_ESCAPE(REQUEST_POST('request')) + getConfig('debug_mode'), + SQL_ESCAPE(REQUEST_POST('request')) ); // Is the module there? Else we log it! - if (INCLUDE_READABLE($INC)) { + if (isIncludeReadable($INC)) { // Load the request module - LOAD_INC($INC); + loadInclude($INC); } else { // Missing request file, may happen while development DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_404', REQUEST_POST('request'));