]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/index.php
introduced isSqlResult() which encapsulates checking MySQL/i results
[mailer.git] / inc / modules / index.php
index 3c52cb5013b472cf7e9d8325123a68f0c84789b9..a24d7d7b5cc35e15df31c3a2b22a00a5bd3bae6a 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -53,7 +53,7 @@ handleCodeMessage();
 loadTemplate('guest_menu_td');
 
 // Add the guest's menu here...
-if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', TRUE))) {
+if ((isGuestMenuEnabled()) || (!isExtensionActive('sql_patches', TRUE))) {
        // Show only when guest menu is active
        addMenu('guest', getAction(), getWhat());
 } // END - if
@@ -65,7 +65,7 @@ loadTemplate('guest_menu_content');
 enableBlockMode(FALSE);
 
 // Construct FQFN
-$inc = sprintf("inc/modules/guest/action-%s.php", getAction());
+$inc = sprintf('inc/modules/guest/action-%s.php', getAction());
 
 // Is the file there?
 if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
@@ -76,7 +76,7 @@ if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWha
        redirectToUrl('modules.php?module=index');
 }
 
-if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches'))) {
+if ((isGuestMenuEnabled()) || (!isExtensionActive('sql_patches'))) {
        // Right side of content (hint: a good place for 120x600 skyscraper banner!)
        loadTemplate('guest_content_footer');