]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/sponsor_functions.php
Fixes for a lot bug tickets. (Sorry for lame comment)
[mailer.git] / inc / libs / sponsor_functions.php
index 5c511f85a61e96b1f2ebc002d527657b07b1f2b0..499abe7e9fee74877bf93b5e78c91720c9461fcb 100644 (file)
@@ -445,7 +445,7 @@ function UPDATE_SPONSOR_LOGIN()
 
        // Calculate cookie lifetime, maybe we have to change this so the admin can setup a
        // seperate timeout for these two cookies?
-       $life = (time() + $_CONFIG['online_timeout']);
+       $life = (time() + getConfig('online_timeout'));
 
        // Is confirmed so both is fine and we can continue with login procedure
        $login = ((setcookie("sponsorid"  , bigintval($_COOKIE['sponsorid']), $life, COOKIE_PATH)) &&
@@ -455,7 +455,7 @@ function UPDATE_SPONSOR_LOGIN()
        if ($login)
        {
                // Update last online timestamp
-               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data
+               SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data
 SET last_online='".time()."'
 WHERE id='%s' AND password='%s' LIMIT 1",
  array(bigintval($_COOKIE['sponsorid']), $_COOKIE['sponsorpass']), __FILE__, __LINE__);