]> git.mxchange.org Git - mailer.git/blobdiff - inc/stylesheet.php
Better encapsulate this a little ...
[mailer.git] / inc / stylesheet.php
index 7cd2a38cf4d105ed69964e001fe0781b1813b130..ab881f0286af756132e5ca2f1ecd2bd2f7d6e9b3 100644 (file)
@@ -17,7 +17,7 @@
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -108,10 +108,7 @@ if ((isCssOutputMode()) || (getConfig('css_php') == 'DIRECT')) {
        $OUT = '<link rel="stylesheet" type="text/css" href="{%url=css.php';
        if ((isInstallationPhase())) {
                // Default theme first
-               $newTheme = 'default';
-               if (isGetRequestParameterSet('theme'))  $newTheme = getRequestParameter('theme');
-               if (isPostRequestParameterSet('theme')) $newTheme = secureString(postRequestParameter('theme'));
-               $OUT .= '?theme=' . $newTheme . '&amp;installing=1';
+               $OUT .= '?theme=' . getCurrentTheme() . '&amp;installing=1';
        } else {
                // Add SVN revision to bypass caching problems
                $OUT .= '?rev=' . getCurrentRepositoryRevision();