X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=js.php;h=9ef588d72b62378a88d4f7c81ad9d8cb790a125e;hp=73f04b5a02af12f4fc2c0cdb0598cb6d8dfe5e0d;hb=59bd8a9805c51c895a92cc12825f4cbdfd792597;hpb=84317e249885eb03a99f2946acf285ff27d506ac diff --git a/js.php b/js.php index 73f04b5a02..9ef588d72b 100644 --- a/js.php +++ b/js.php @@ -39,7 +39,8 @@ require("inc/libs/security_functions.php"); // Init "action" and "what" global $what, $action; -$GLOBALS['what'] = ""; $GLOBALS['action'] = ""; +$GLOBALS['what'] = ""; +$GLOBALS['action'] = ""; // This is a fake-CSS file loader, more a JavaScript loader... // This is in one way good and in one not. The whole reset part will be @@ -48,7 +49,7 @@ $GLOBALS['what'] = ""; $GLOBALS['action'] = ""; // pattern is given... // // But mxchange 0.3.0 will show that in better way! :D :D :D -$CSS = "1"; $GLOBALS['module'] = "js"; +$GLOBALS['output_mode'] = "1"; $GLOBALS['module'] = "js"; // Load the required file(s) require("inc/config.php"); @@ -56,7 +57,7 @@ require("inc/config.php"); // Is this script installed and a JavaScript tag is provied? if ((isBooleanConstantAndTrue('mxchange_installed')) && (isset($_GET['tag']))) { // Set header - @header("Content-type: text/javascript"); + header("Content-type: text/javascript"); // Load header LOAD_INC_ONCE("inc/header.php"); @@ -67,7 +68,7 @@ if ((isBooleanConstantAndTrue('mxchange_installed')) && (isset($_GET['tag']))) { ); // Is that file readable? - if (FILE_READABLE($INC)) { + if (INCLUDE_READABLE($INC)) { // Include it LOAD_INC_ONCE($INC); } // END - if