]> git.mxchange.org Git - mailer.git/blobdiff - inc/autopurge/purge-inact.php
Fix for the fix... :(
[mailer.git] / inc / autopurge / purge-inact.php
index 285a3abc784828f5d804bc4354af0a909b237ec0..fc75e5f62b980744daa565a9a101a9806d7ba140 100644 (file)
@@ -100,7 +100,7 @@ ORDER BY d.userid", array($since, $since, $since), __FILE__, __LINE__);
 
                        // Update this account
                        ADD_SQL(SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET ap_notified=UNIX_TIMESTAMP() WHERE userid=%s LIMIT 1",
-                               array(bigintval($content['userid'])), __FILE__, __LINE__, false));
+                       array(bigintval($content['userid'])), __FILE__, __LINE__, false));
                } // END - while
 
                // Remove last comma
@@ -121,7 +121,7 @@ FROM `{!_MYSQL_PREFIX!}_user_data` AS d
 WHERE `status`='CONFIRMED' AND joined < (UNIX_TIMESTAMP() - %s) AND `last_online` < (UNIX_TIMESTAMP() - %s) AND ap_notified < (UNIX_TIMESTAMP() - %s)
 ".$EXCLUDE_LIST."
 ORDER BY `userid` ASC",
-               array($since, $since, $time), __FILE__, __LINE__);
+       array($since, $since, $time), __FILE__, __LINE__);
        if (SQL_NUMROWS($result_inactive) > 0) {
                // Prepare variable...
                $UIDs = '';