]> git.mxchange.org Git - mailer.git/blobdiff - js.php
Global variables rewritten
[mailer.git] / js.php
diff --git a/js.php b/js.php
index 73f04b5a02af12f4fc2c0cdb0598cb6d8dfe5e0d..9ef588d72b62378a88d4f7c81ad9d8cb790a125e 100644 (file)
--- 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