]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/transfer_functions.php
More rewrites/templates swapped out:
[mailer.git] / inc / libs / transfer_functions.php
index 1104d6bf5af89c0ea94ad88cd20e9205f1af28fa..6c509f4d8d835b3c44adc622d7e2f49ecc9e207b 100644 (file)
@@ -51,7 +51,7 @@ function autoPurgeTransfers ($max, $age) {
                $remove = SQL_NUMROWS($result) - $max;
 
                // This will make it really old, so the final removal query will find it
-               $result = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_transfers_in` SET `time_trans`=0 ORDER BY `id` LIMIT %s",
+               $result = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_transfers_in` SET `time_trans`=0 ORDER BY `id` ASC LIMIT %s",
                        array($remove), __FUNCTION__, __LINE__);
        } // END - if
 
@@ -62,7 +62,7 @@ function autoPurgeTransfers ($max, $age) {
                $remove = SQL_NUMROWS($result) - $max;
 
                // This will make it really old, so the final removal query will find it
-               $result = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_transfers_out` SET `time_trans`=0 ORDER BY `id` LIMIT %s",
+               $result = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_transfers_out` SET `time_trans`=0 ORDER BY `id` ASC LIMIT %s",
                        array($remove), __FUNCTION__, __LINE__);
        } // END - if