]> git.mxchange.org Git - mailer.git/commitdiff
Opps... :(
authorRoland Häder <roland@mxchange.org>
Sun, 22 Aug 2010 13:45:09 +0000 (13:45 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 22 Aug 2010 13:45:09 +0000 (13:45 +0000)
inc/libs/user_functions.php

index 187afc76159406e3dc21e957e8c2829adf7f696e..b568c879ad36a0402d5a9e358d2b9fe9a6eab951 100644 (file)
@@ -543,7 +543,7 @@ function insertUserStatsRecord ($userid, $statsType, $statsData) {
 }
 
 // Confirms a user account
-function doConfirmUserAccount () {
+function doConfirmUserAccount ($hash) {
        // Init content
        $content = array(
                'message' => '{--GUEST_CONFIRMED_FAILED--}',
@@ -555,7 +555,7 @@ function doConfirmUserAccount () {
 
        // Search for an unconfirmed or confirmed account
        $result = SQL_QUERY_ESC("SELECT `userid`, `email`, `refid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `user_hash`='%s' AND (`status`='UNCONFIRMED' OR `status`='CONFIRMED') LIMIT 1",
-               array(getRequestParameter('hash')), __FILE__, __LINE__);
+               array($hash), __FILE__, __LINE__);
        if (SQL_NUMROWS($result) == 1) {
                // Ok, he want's to confirm now so we load some data
                list($userid, $email, $refid) = SQL_FETCHROW($result);
@@ -580,7 +580,9 @@ WHERE
        `user_hash`='%s' AND
        `status`='UNCONFIRMED'
 LIMIT 1",
-                       array(getRequestParameter('hash')), __FILE__, __LINE__);
+                       array($hash), __FILE__, __LINE__);
+
+               // Was it updated?
                if (SQL_AFFECTEDROWS() == 1) {
                        // Send email if updated
                        $message = loadEmailTemplate('confirm-member', $content, bigintval($userid));