]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/transfer_functions.php
session_(un)register are deprecated as of 5.3.1
[mailer.git] / inc / libs / transfer_functions.php
index c61e7a6e5fd2b4752714aab722ff15bc0e964a3c..1104d6bf5af89c0ea94ad88cd20e9205f1af28fa 100644 (file)
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -50,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` LIMIT %s",
                        array($remove), __FUNCTION__, __LINE__);
        } // END - if
 
@@ -61,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` LIMIT %s",
                        array($remove), __FUNCTION__, __LINE__);
        } // END - if