]> git.mxchange.org Git - mailer.git/commitdiff
Typo fixed
authorRoland Häder <roland@mxchange.org>
Sat, 28 Feb 2009 17:00:38 +0000 (17:00 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 28 Feb 2009 17:00:38 +0000 (17:00 +0000)
inc/load_extensions.php

index 67d43e2e0b3bbaa04994d0130cece0995532a73a..97241d85a771afb4ef0521a6a4d1885dfd34ff7d 100644 (file)
@@ -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";