X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fpurge%2Fpurge-mails.php;h=4827c787df4b754e17017693d5688cbc35a4b807;hb=ffc8edeb9f05685c42ffa01e030e66436bd1d3c1;hp=ca8282eacf01ee907bad4720dbceb15ee7262132;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341;p=mailer.git diff --git a/inc/purge/purge-mails.php b/inc/purge/purge-mails.php index ca8282eacf..4827c787df 100644 --- a/inc/purge/purge-mails.php +++ b/inc/purge/purge-mails.php @@ -43,7 +43,7 @@ if (!defined('__SECURITY')) { // Abort if autopurge is not active or disabled by admin if ((!isExtensionActive('autopurge')) || (!isAutoPurgingActive()) || (getConfig('ap_del_mails') != 'Y')) { // Abort here - return false; + return FALSE; } // END - if // Okay, let's check for deleted mails @@ -60,7 +60,7 @@ ORDER BY // Init counter... $deletedStats = '0'; -// Do we have "purged" mails? +// Is there "purged" mails? if (!SQL_HASZERONUMS($result_mails)) { // Okay, check for their sender's while ($content = SQL_FETCHARRAY($result_mails)) { @@ -89,7 +89,7 @@ WHERE ORDER BY `userid` ASC", __FILE__, __LINE__); -// Do we have "purged" mails? +// Is there "purged" mails? if (!SQL_HASZERONUMS($result_mails)) { // Okay, check for their sender's while ($content = SQL_FETCHARRAY($result_mails)) { @@ -118,7 +118,7 @@ ORDER BY // Free memory SQL_FREERESULT($result_mails); -// Do we have deleted mails and the admin want's to receive a notification +// Is there 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('{--ADMIN_AUTOPURGE_DELETE_MAILS_SUBJECT--}', 'admin_autopurge_del_mails', $deletedStats);