]> git.mxchange.org Git - mailer.git/blobdiff - inc/stylesheet.php
More other options moved out (to config_order)
[mailer.git] / inc / stylesheet.php
index 38e4e7cd8e659b97d581be414cbcc10a12a0c2a2..a341fd599f49262318f0e6db42d1d79a6d5f2455 100644 (file)
@@ -44,13 +44,13 @@ $STYLES = array(
 );
 
 // Add stylesheet for installation
-if ((basename($_SERVER['PHP_SELF']) == "install.php") || (!mxchange_installed) || (isset($_GET['installing']))) $STYLES[] = "install.css";
+if ((basename($_SERVER['PHP_SELF']) == "install.php") || (!isBooleanConstantAndTrue('mxchange_installed')) || (isset($_GET['installing']))) $STYLES[] = "install.css";
 
 // When no CSS output-mode is set, set it to file-output
-if (empty($CONFIG['css_php'])) $CONFIG['css_php'] = "FILE";
+if (empty($_CONFIG['css_php'])) $_CONFIG['css_php'] = "FILE";
 
 // Output CSS files or content or link to css.php ?
-if (($CSS == "1") || ($CONFIG['css_php'] == "DIRECT"))
+if (($CSS == "1") || ($_CONFIG['css_php'] == "DIRECT"))
 {
        // Load CSS files
        if (is_array($EXT_CSS_FILES))
@@ -76,7 +76,7 @@ if (($CSS == "1") || ($CONFIG['css_php'] == "DIRECT"))
                // Do include only existing files and whose are not empty
                if ((file_exists($file)) && (filesize($file) > 0))
                {
-                       switch ($CONFIG['css_php'])
+                       switch ($_CONFIG['css_php'])
                        {
                        case "DIRECT":
                                OUTPUT_HTML("<LINK rel=\"stylesheet\" type=\"text/css\" href=\"".URL."/".$BASE."\">");
@@ -94,7 +94,7 @@ if (($CSS == "1") || ($CONFIG['css_php'] == "DIRECT"))
 {
        // Now we load all CSS files from css.php!
        OUTPUT_HTML("<LINK rel=\"stylesheet\" type=\"text/css\" href=\"".URL."/css.php", false);
-       if (mxchange_installing)
+       if (isBooleanConstantAndTrue('mxchange_installing'))
        {
                // Default theme first
                $NEW_THEME = "default";