X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=js.php;h=38548c2cd47d63f427fafa6b4891a24eeda08b96;hp=cf93e394b3a119748102ea46dcd67d615cff1e4e;hb=3bcb292dd0b55177499600c226d5d2aa8a932ce7;hpb=444470f309a050293341c95917beb89d60a394b9 diff --git a/js.php b/js.php index cf93e394b3..38548c2cd4 100644 --- a/js.php +++ b/js.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -36,6 +36,9 @@ * MA 02110-1301 USA * ************************************************************************/ +// XDEBUG call +//* DEBUG: */ xdebug_start_trace(); + // Load security stuff here require('inc/libs/security_functions.php'); @@ -46,29 +49,29 @@ require('inc/libs/security_functions.php'); // pattern is given... // // But mxchange 0.3.0 will show that in better way! :D :D :D -$GLOBALS['output_mode'] = '1'; +$GLOBALS['output_mode'] = 1; $GLOBALS['module'] = 'js'; // Load the required file(s) require('inc/config-global.php'); -// Is this script installed and a JavaScript tag is provied? -if ((isInstalled()) && (REQUEST_ISSET_GET('tag'))) { +// Is 'js' is provied? +if (isGetRequestElementSet('js')) { // Set header - sendHeader('Content-type: text/javascript'); + setContentType('text/javascript'); // Load header loadIncludeOnce('inc/header.php'); // Prepare include file for looking - $INC = sprintf("inc/js/js-%s.php", - REQUEST_GET('tag') + $inc = sprintf("inc/js/js-%s.php", + getRequestElement('js') ); // Is that file readable? - if (isIncludeReadable($INC)) { + if (isIncludeReadable($inc)) { // Include it - loadIncludeOnce($INC); + loadIncludeOnce($inc); } // END - if // Load footer @@ -78,5 +81,5 @@ if ((isInstalled()) && (REQUEST_ISSET_GET('tag'))) { // Shutdown shutdown(); -// +// [EOF] ?>