]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-confirm.php
Heavy rewrite:
[mailer.git] / inc / modules / guest / what-confirm.php
index 75ddaba89b46491d10f61ea6eb8b35a02e59e014..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;
                                        }
 
@@ -129,24 +129,24 @@ if (REQUEST_ISSET_GET(('hash'))) {
                        // Nobody was found unter this hash key... or our new member want's to confirm twice?
                        define('__CONFIRM_MSG', getMessage('GUEST_CONFIRMED_TWICE'));
                        define('__UID', '0');
-                       LOAD_TEMPLATE("guest_confirm_table");
+                       LOAD_TEMPLATE('guest_confirm_table');
                }
        } else {
                // Nobody was found unter this hash key... or our new member want's to confirm twice?
                define('__CONFIRM_MSG', getMessage('GUEST_CONFIRMED_TWICE'));
                define('__UID', '0');
-               LOAD_TEMPLATE("guest_confirm_table");
+               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__);
+               array(REQUEST_POST('email')), __FILE__, __LINE__);
        if (SQL_NUMROWS($result) == 1) {
                // Email address found
                $DATA = SQL_FETCHROW($result);
                switch ($DATA[1])
                {
-                       case "UNCONFIRMED": // Account not confirmed
+                       case 'UNCONFIRMED': // Account not confirmed
                                $msg = LOAD_EMAIL_TEMPLATE("guest_request_confirm", array('hash' => $DATA[2]), $DATA[0]);
                                sendEmail(REQUEST_POST('email'), getMessage('REQUEST_CONFIRM_LINK_SUBJ'), $msg);
                                $content = getMessage('CONFIRM_LINK_SENT');
@@ -156,7 +156,7 @@ if (REQUEST_ISSET_GET(('hash'))) {
                                $content = getMessage('LOGIN_ID_CONFIRMED');
                                break;
 
-                       case "LOCKED": // Account is locked
+                       case 'LOCKED': // Account is locked
                                $content = getMessage('LOGIN_ID_LOCKED');
                                break;
                }