From: Roland Häder Date: Thu, 3 Dec 2009 23:06:08 +0000 (+0000) Subject: Fix for parser error X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=f3f0f9f9f64ad5816acc84270524f3b48e020087 Fix for parser error --- diff --git a/inc/libs/transfer_functions.php b/inc/libs/transfer_functions.php index c61e7a6e5f..a82bc8bdea 100644 --- a/inc/libs/transfer_functions.php +++ b/inc/libs/transfer_functions.php @@ -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