]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/action-themes.php
The yearly copyright-update commit. 2009, 2010 are now copyrighted on the developer...
[mailer.git] / inc / modules / guest / action-themes.php
index b239377473165473b8fbdc69e15c49a67c125ff1..69fbd7b83745907fb3cc686d491123a41dcdddf4 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 11/12/2004 *
- * ================                             Last change: 11/12/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 11/12/2004 *
+ * ===================                          Last change: 11/12/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : action-themes.php                                *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -40,7 +41,7 @@
 if (!defined('__SECURITY')) {
        die();
 } elseif (!isBlockModeEnabled()) {
-       // Block mode detected
+       // Non-block mode detected
        return;
 }
 
@@ -51,18 +52,18 @@ if ((!isExtensionActive('theme')) && (!isAdmin())) {
 
 // Get total num
 if (isAdmin()) {
-       // Load only active designs for user
-       $num_themes = countSumTotalData('Y', 'themes', 'id', 'theme_active', true);
-} else {
        // Load all themes for admin
        $num_themes = countSumTotalData('', 'themes', 'id', '', true);
+} else {
+       // Load only active designs for user
+       $num_themes = countSumTotalData('Y', 'themes', 'id', 'theme_active', true);
 }
 
 $OUT = '';
 if ($num_themes > 1) {
        // If more than 1 is installed output selection box
        $OUT = generateThemeSelectionBox();
-} elseif (($num_themes == 1) || ((!isAdmin()) && ($num_themes == 0))) {
+} elseif (($num_themes == 1) || ((!isAdmin()) && ($num_themes == '0'))) {
        // If there's only one just output it's name
        $OUT = loadTemplate('theme_one', true, getCurrentThemeName());
 } elseif (isAdmin()) {