]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-confirm.php
Heavy rewrite:
[mailer.git] / inc / modules / guest / what-confirm.php
index 31a55f147f4dd6b5278b53494045d3b4591f1e7e..d790166aff675bbac38d62e49852a1c7e2ae57c1 100644 (file)
@@ -45,7 +45,7 @@ if (!defined('__SECURITY')) {
 // Add description as navigation point
 ADD_DESCR('guest', __FILE__);
 
-if (REQUEST_ISSET_GET(('hash'))) {
+if (REQUEST_ISSET_GET('hash')) {
        // Initialize the user ID
        $uid = 0;
 
@@ -77,12 +77,12 @@ if (REQUEST_ISSET_GET(('hash'))) {
                                        // Ok, write the ref-points to this user and his parent-ref
                                        unset($GLOBALS['ref_level']);
 
-                                       // Shall I "pay" the referal points imidiately?
+                                       // Shall I 'pay' the referal points imidiately?
                                        if (getConfig('ref_payout') == '0') {
-                                               // Yes, "pay" it now
+                                               // Yes, 'pay' it now
                                                $locked = false;
                                        } else {
-                                               // No, "pay" it later
+                                               // No, 'pay' it later
                                                $locked = true;
                                        }
 
@@ -137,7 +137,7 @@ if (REQUEST_ISSET_GET(('hash'))) {
                define('__UID', '0');
                LOAD_TEMPLATE('guest_confirm_table');
        }
-} elseif ((IS_FORM_SENT()) && (REQUEST_ISSET_POST('email'))) {
+} elseif ((isFormSent()) && (REQUEST_ISSET_POST('email'))) {
        // Confirmation link requested      0     1         2
        $result = SQL_QUERY_ESC("SELECT userid, status, user_hash FROM `{!_MYSQL_PREFIX!}_user_data` WHERE email='%s' LIMIT 1",
                array(REQUEST_POST('email')), __FILE__, __LINE__);