From: quix0r Date: Sat, 28 Feb 2009 17:00:38 +0000 (+0000) Subject: Typo fixed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8d916f23c8592b1dc0ee073c7a0ebf1b44c3852d;p=mailer.git Typo fixed --- diff --git a/inc/load_extensions.php b/inc/load_extensions.php index 67d43e2e0b..97241d85a7 100644 --- a/inc/load_extensions.php +++ b/inc/load_extensions.php @@ -228,10 +228,10 @@ if ((SQL_NUMROWS($res_ext_crt) > 0) && ((($GLOBALS['cacheMode'] == "init") && ($ // CSS file handling: if ((!isset($content['ext_css'])) || ($content['ext_css'] == "Y")) { // Create FQFN for the CSS file - $GLOBALS['output_mode']_FILE = sprintf("%stheme/%s/css/%s.css", constant('PATH'), GET_CURR_THEME(), $content['ext_name']); + $FQFN = sprintf("%stheme/%s/css/%s.css", constant('PATH'), GET_CURR_THEME(), $content['ext_name']); // Is the file there? - if (FILE_READABLE($GLOBALS['output_mode']_FILE)) { + if (FILE_READABLE($FQFN)) { // CSS file for extension was found (use only relative path for now!) EXT_ADD_CSS_FILE($content['ext_name'].".css"); $content['ext_css'] = "Y";