]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-book_surfbar.php
Mailer project continued (heavy refactoring):
[mailer.git] / inc / modules / member / what-book_surfbar.php
index 63ee0ceda2831d467fa0216824ae88065a316d85..7b65d6d7fe5fde79d0e20dba645d4d70c3d8113b 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 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 *
@@ -37,7 +37,7 @@
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } elseif (!isMember()) {
        // Redirect
        redirectToIndexMemberOnlyModule();
@@ -52,7 +52,7 @@ if ((!isExtensionActive('surfbar')) && (!isAdmin())) {
 } // END - if
 
 // Still allowed to book more URLs?
-if (!SURFBAR_IF_USER_BOOK_MORE_URLS()) {
+if (!ifSurfbarMemberAllowedMoreUrls()) {
        // No more URLs allowed to book!
        displayMessage('{--MEMBER_SURFBAR_NO_MORE_ALLOWED--}');
 } elseif ((isFormSent()) && (isPostRequestElementSet('limited'))) {
@@ -66,7 +66,7 @@ if (!SURFBAR_IF_USER_BOOK_MORE_URLS()) {
        $message = '{--MEMBER_SURFBAR_URL_NOT_ADDED--}';
 
        // Register the new URL
-       $insertId = SURFBAR_MEMBER_ADD_URL(postRequestElement('url'), postRequestElement('limit'));
+       $insertId = doSurfbarMemberAddUrl(postRequestElement('url'), postRequestElement('limit'));
 
        // Was this fine?
        if ($insertId > 0) {