]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-confirm.php
Used EL code {%template,LoadTemplate=foo%} instead of loadTemplate('foo', TRUE);
[mailer.git] / inc / modules / guest / what-confirm.php
index e12b000e1acb13e877ed29a7e3c33c8ba2cce1a7..bcb07f0d4a433775edea1f73255ee029bb71c8a2 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } // END - if
 
 // Add description as navigation point
 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');