]> git.mxchange.org Git - mailer.git/blobdiff - inc/stylesheet.php
More other options moved out (to config_order)
[mailer.git] / inc / stylesheet.php
index b63e94db6ed762c4cec93035db7205a5f598a490..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,15 +76,15 @@ 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."\">");
+                               OUTPUT_HTML("<LINK rel=\"stylesheet\" type=\"text/css\" href=\"".URL."/".$BASE."\">");
                                break;
 
                        case "FILE":
                                $load = implode("", file($file));
-                               OUTPUT_HTML ($load);
+                               OUTPUT_HTML($load);
                                break;
                        }
                }
@@ -93,16 +93,16 @@ if (($CSS == "1") || ($CONFIG['css_php'] == "DIRECT"))
  else
 {
        // 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)
+       OUTPUT_HTML("<LINK rel=\"stylesheet\" type=\"text/css\" href=\"".URL."/css.php", false);
+       if (isBooleanConstantAndTrue('mxchange_installing'))
        {
                // Default theme first
                $NEW_THEME = "default";
                if (!empty($_GET['theme'])) $NEW_THEME = $_GET['theme'];
                if (!empty($_POST['theme'])) $NEW_THEME = $_POST['theme'];
-               OUTPUT_HTML ("?theme=".$NEW_THEME."&amp;installing=1", false);
+               OUTPUT_HTML("?theme=".$NEW_THEME."&amp;installing=1", false);
        }
-       OUTPUT_HTML ("\">");
+       OUTPUT_HTML("\">");
 }
 
 //