X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=debug.php;h=f08058f0d9b0508380728717029c910b23bf15c5;hp=025ec75cfdec9369ec9576a890057c38bd71a26f;hb=397eb5dee2611cfaa1ff494d73e6785b88109cd6;hpb=5bdeaf8b452206598b6c6cd4f941145b11a0eccc diff --git a/debug.php b/debug.php index 025ec75cfd..f08058f0d9 100644 --- a/debug.php +++ b/debug.php @@ -43,7 +43,7 @@ $GLOBALS['action'] = ""; $GLOBALS['module'] = "debug"; $CSS = -1; // Load the required file(s) -require("inc/config.php"); +require_once("inc/config.php"); // Redirect only to registration page when this script is installed if ((isBooleanConstantAndTrue('mxchange_installed')) && (getTotalFatalErrors() == 0)) { @@ -58,16 +58,15 @@ if ((isBooleanConstantAndTrue('mxchange_installed')) && (getTotalFatalErrors() = // Handle the request if (DEBUG_HANDLE_REQUEST($_POST['request'])) { // Construct FQFN for the module - $fqfn = sprintf("%sinc/debug/%s/request_%s", - PATH, + $INC = sprintf("inc/debug/%s/request_%s", getConfig('debug_mode'), SQL_ESCAPE($_POST['request']) ); // Is the module there? Else we log it! - if (FILE_READABLE($fqfn)) { + if (FILE_READABLE($INC)) { // Load the request module - require($fqfn); + LOAD_INC($INC); } else { // Missing request file, may happen while development DEBUG_ABUSE_LOG(__FILE__, __LINE__, "request_404", $_POST['request']);