X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fautopurge%2Fpurge-mails.php;h=8f9e3308b1329063bf8390b233c79d3b76e2b4c1;hb=d6a5c97084d5e8f253b3f020db29494ab549e52f;hp=79fbe434ebf88462189903c3c15915bc5f028923;hpb=8aceadaff8d62f3eb339fe9cbad8cc22a47f530e;p=mailer.git diff --git a/inc/autopurge/purge-mails.php b/inc/autopurge/purge-mails.php index 79fbe434eb..8f9e3308b1 100644 --- a/inc/autopurge/purge-mails.php +++ b/inc/autopurge/purge-mails.php @@ -43,7 +43,7 @@ if (!defined('__SECURITY')) { } // END - if // Abort if autopurge is not active or disabled by admin -if ((!isExtensionActive('autopurge')) || (getConfig('auto_purge_active') != 'Y') || (getConfig('ap_del_mails') != 'Y')) { +if ((!isExtensionActive('autopurge')) || (!isAutoPurgingActive()) || (getConfig('ap_del_mails') != 'Y')) { // Abort here return false; } // END - if @@ -62,7 +62,7 @@ ORDER BY $deletedStats = '0'; // Do we have "purged" mails? -if (SQL_NUMROWS($result_mails) > 0) { +if (!SQL_HASZERONUMS($result_mails)) { // Okay, check for their sender's while ($content = SQL_FETCHARRAY($result_mails)) { // Check now... @@ -101,7 +101,7 @@ ORDER BY `userid` ASC", __FILE__, __LINE__); // Do we have "purged" mails? -if (SQL_NUMROWS($result_mails) > 0) { +if (!SQL_HASZERONUMS($result_mails)) { // Okay, check for their sender's while ($content = SQL_FETCHARRAY($result_mails)) { // Check now... @@ -132,7 +132,7 @@ SQL_FREERESULT($result_mails); // Do we have deleted mails and the admin want's to receive a notification if (($deletedStats > 0) && (getConfig('ap_dm_notify') == 'Y')) { // Send out email to admin - sendAdminNotification(getMessage('AUTOPURGE_ADMIN_DEL_MAILS_SUBJECT'), 'admin_autopurge_del_mails', $deletedStats); + sendAdminNotification('{--ADMIN_AUTOPURGE_DEL_MAILS_SUBJECT--}', 'admin_autopurge_del_mails', $deletedStats); } // END - if //