]> git.mxchange.org Git - mailer.git/blobdiff - debug.php
Fixed a typo, thanks to profi-concept. Function INCLUDE_READABLE() introduced
[mailer.git] / debug.php
index 025ec75cfdec9369ec9576a890057c38bd71a26f..2466faa8585cfda18f1f181cdc4960f234b4ed4f 100644 (file)
--- a/debug.php
+++ b/debug.php
@@ -32,7 +32,7 @@
  ************************************************************************/
 
 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
-require_once("inc/libs/security_functions.php");
+require("inc/libs/security_functions.php");
 
 // Init "action" and "what"
 global $what, $action;
@@ -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 (INCLUDE_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']);