]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/action-themes.php
www is out-dated
[mailer.git] / inc / modules / member / action-themes.php
index 22a22725ce689e01582105319a2daabe5a464118..3a97042cd01827e1165a2ee1967630a5ff78f5f7 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                                *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * 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 *
@@ -41,13 +40,13 @@ if (!defined('__SECURITY')) {
        die();
 } elseif (!isMember()) {
        redirectToIndexMemberOnlyModule();
+} elseif (!isBlockModeEnabled()) {
+       // Non-block mode detected
+       return;
 }
 
-// Add description as navigation point
-addMenuDescription('member', __FILE__);
-
 if ((!isExtensionActive('theme')) && (!isAdmin())) {
-       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('theme'));
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=theme%}');
        return;
 } // END - if
 
@@ -63,7 +62,7 @@ if (isAdmin()) {
 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()) {