From f3f0f9f9f64ad5816acc84270524f3b48e020087 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 3 Dec 2009 23:06:08 +0000 Subject: [PATCH] Fix for parser error --- inc/libs/transfer_functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2