X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fautopurge%2Fpurge-mails.php;h=795e2d1fb7495a91dae8c34239f20458c97897c3;hp=712553b6557cb1e5ee86ab53e0ea167c0f3ecd7d;hb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;hpb=a443166d3f417109c905dc399ee7149ca4de6319 diff --git a/inc/autopurge/purge-mails.php b/inc/autopurge/purge-mails.php index 712553b655..795e2d1fb7 100644 --- a/inc/autopurge/purge-mails.php +++ b/inc/autopurge/purge-mails.php @@ -14,8 +14,6 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009, 2010 by Mailer Developer Team * @@ -54,7 +52,8 @@ $result_mails = SQL_QUERY("SELECT FROM `{?_MYSQL_PREFIX?}_pool` WHERE - `data_type`='DELETED' AND `timestamp` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?}) + `data_type`='DELETED' AND + `timestamp` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?}) ORDER BY `sender` ASC", __FILE__, __LINE__); @@ -80,7 +79,8 @@ if (!SQL_HASZERONUMS($result_mails)) { FROM `{?_MYSQL_PREFIX?}_pool` WHERE - `data_type`='DELETED' AND timestamp <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?}) + `data_type`='DELETED' AND + `timestamp` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?}) ORDER BY `sender` ASC", __FILE__, __LINE__); } // END - if @@ -115,7 +115,7 @@ if (!SQL_HASZERONUMS($result_mails)) { // Reset query (to prevent possible errors) ... $result_mails = SQL_QUERY("SELECT - `userid` AS userid + `userid` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE @@ -135,5 +135,5 @@ if (($deletedStats > 0) && (getConfig('ap_dm_notify') == 'Y')) { sendAdminNotification('{--ADMIN_AUTOPURGE_DELETE_MAILS_SUBJECT--}', 'admin_autopurge_del_mails', $deletedStats); } // END - if -// +// [EOF] ?>