]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-confirm.php
Several double->single convertions, fix for missing constant '_MYSQL_PREFIX' which...
[mailer.git] / inc / modules / guest / what-confirm.php
index 31a55f147f4dd6b5278b53494045d3b4591f1e7e..c59a6a55691a60cd9ac2e93f309120fd5a5a6a2e 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;
 
@@ -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__);