X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fstylesheet.php;h=0e2045ae026938a12e0498acee01af40b7e8632b;hb=885637e9f61f315ba051500061ec193ebc937f7b;hp=a7312b5589155be7af4c275cb0d994eefe521747;hpb=7b0f17cd637e388049d2167811e4332cec1e979b;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index a7312b5589..0e2045ae02 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -44,17 +44,17 @@ if (!defined('__SECURITY')) { // Default styles $STYLES = array( - "general.css", + 'general.css', ); // Add stylesheet for installation -if ((isInstalling()) || (!isInstalled())) $STYLES[] = "install.css"; +if ((isInstalling()) || (!isInstalled())) $STYLES[] = 'install.css'; // When no CSS output-mode is set, set it to file-output -if (!isConfigEntrySet('css_php')) setConfigEntry('css_php', "FILE"); +if (!isConfigEntrySet('css_php')) setConfigEntry('css_php', 'FILE'); // Output CSS files or content or link to css.php ? -if (($GLOBALS['output_mode'] == "1") || (getConfig('css_php') == "DIRECT")) { +if ((getOutputMode() == '1') || (getConfig('css_php') == 'DIRECT')) { // Load CSS files $STYLES = merge_array($STYLES, EXT_GET_CSS_FILES()); @@ -67,13 +67,17 @@ if (($GLOBALS['output_mode'] == "1") || (getConfig('css_php') == "DIRECT")) { // Do include only existing files and whose are not empty if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { switch (getConfig('css_php')) { - case 'DIRECT': + case 'DIRECT': // Just link them (unsupported) OUTPUT_HTML(''); break; - case 'FILE': + case 'FILE': // Output contents OUTPUT_HTML(readFromFile($FQFN)); break; + + default: // Invalid mode! + debug_report_bug(sprintf("Invalid css_php value %s detected.", getConfig('css_php'))); + break; } // END - switch } // END - if } // END - foreach