Code cosmetics applied
[mailer.git] / inc / modules / guest / what-confirm.php
index 75ddaba89b46491d10f61ea6eb8b35a02e59e014..31a55f147f4dd6b5278b53494045d3b4591f1e7e 100644 (file)
@@ -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 ((IS_FORM_SENT()) && (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;
                }