X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=debug.php;h=aa7c764e1ffc549dae66a068b68df1632b2366f5;hb=0437f06b273f885db05736449a952c6eb72086ca;hp=39248d2dfdef003bf8f0dd1367fddaf8598d5973;hpb=a090e351c49fe021fb3064325694da03402332e0;p=mailer.git diff --git a/debug.php b/debug.php index 39248d2dfd..aa7c764e1f 100644 --- a/debug.php +++ b/debug.php @@ -36,7 +36,7 @@ * 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" @@ -48,7 +48,7 @@ $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)) { @@ -69,9 +69,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'));