Fix for parser error
authorRoland Häder <roland@mxchange.org>
Thu, 3 Dec 2009 23:06:08 +0000 (23:06 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 3 Dec 2009 23:06:08 +0000 (23:06 +0000)
inc/libs/transfer_functions.php

index c61e7a6e5fd2b4752714aab722ff15bc0e964a3c..a82bc8bdeaa4b8e526d8719f787c5ca2cbd85781 100644 (file)
@@ -50,7 +50,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` LIMIT %s",
                        array($remove), __FUNCTION__, __LINE__);
        } // END - if
 
@@ -61,7 +61,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` LIMIT %s",
                        array($remove), __FUNCTION__, __LINE__);
        } // END - if