X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=debug.php;h=4bf0774391ad1b24ab86147344f784678ae30d6d;hp=39248d2dfdef003bf8f0dd1367fddaf8598d5973;hb=24d88ff55d8797b8624ed0efb6cdfb3cd1e2fa68;hpb=a090e351c49fe021fb3064325694da03402332e0 diff --git a/debug.php b/debug.php index 39248d2dfd..4bf0774391 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)) { @@ -59,7 +55,7 @@ if ((isInstalled()) && (getTotalFatalErrors() == 0)) { } // END - if // Is the request parameter set? - if (REQUEST_ISSET_POST(('request'))) { + if (REQUEST_ISSET_POST('request')) { // Handle the request if (DEBUG_HANDLE_REQUEST(REQUEST_POST('request'))) { // Construct FQFN for the module @@ -69,9 +65,9 @@ if ((isInstalled()) && (getTotalFatalErrors() == 0)) { ); // 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')); @@ -92,5 +88,5 @@ if ((isInstalled()) && (getTotalFatalErrors() == 0)) { // Really all done here... ;-) shutdown(); -// +// [EOF] ?>