]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-confirm.php
www is out-dated
[mailer.git] / inc / modules / guest / what-confirm.php
index bf322701cc02fb24169a38963bbd93f53277d974..d6e3e7f441406f6d2d3b514dd13b9f766f829c17 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * 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 *
@@ -44,16 +44,16 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('guest', __FILE__);
 
 if ((!isExtensionActive('user')) && (!isAdmin())) {
-       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('user'));
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=user%}');
        return;
 } // END - if
 
-if (isGetRequestParameterSet('hash')) {
+if (isGetRequestElementSet('hash')) {
        // Do user account confirmation
-       doConfirmUserAccount(getRequestParameter('hash'));
-} elseif ((isFormSent()) && (isPostRequestParameterSet('email'))) {
+       doConfirmUserAccount(getRequestElement('hash'));
+} elseif ((isFormSent()) && (isPostRequestElementSet('email'))) {
        // Resend confirmation link
-       doResendUserConfirmationLink(postRequestParameter('email'));
+       doResendUserConfirmationLink(postRequestElement('email'));
 } else {
        // No hash found, the guest may want to enter his email address to re-get his confirmation link?
        loadTemplate('guest_confirm_link');