X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=css.php;h=f246c8390b237caaf9fa7351deaaf172a6d4c41d;hp=1917cee822bc65efbcd69cad64ce5cccd5c7ea20;hb=e3c80ba24d088d7c8cd300e01356e9f87465ee39;hpb=d798a412acb8c1263933bd7f7a0fd9aa251495a7 diff --git a/css.php b/css.php index 1917cee822..f246c8390b 100644 --- a/css.php +++ b/css.php @@ -31,33 +31,34 @@ * MA 02110-1301 USA * ************************************************************************/ -// Deactivate caching system in CSS mode -define('_OB_CACHING', "old"); - // 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"); + +// Footer is disabled in CSS mode +$GLOBALS['footer_sent'] = "-1"; -// Init "action" and "what" -global $what, $action; -$GLOBALS['what'] = ""; $GLOBALS['action'] = ""; +// Init variables +$GLOBALS['what'] = ""; +$GLOBALS['action'] = ""; // This is a CSS file loader! -$CSS = "1"; $GLOBALS['module'] = "css"; +$GLOBALS['output_mode'] = "1"; +$GLOBALS['module'] = "css"; + +// Set header +header("Content-type: text/css"); // Load the required file(s) require("inc/config.php"); -// Set header -@header("Content-type: text/css"); - // Load header -require_once(PATH."inc/header.php"); +LOAD_INC("inc/header.php"); // Load CSS code -require_once(PATH."inc/stylesheet.php"); +LOAD_INC("inc/stylesheet.php"); // Load footer -require_once(PATH."inc/footer.php"); +LOAD_INC("inc/footer.php"); // ?>