]> git.mxchange.org Git - mailer.git/blobdiff - inc/purge/purge-mails.php
Also had to fix this to make 'month, numeric' selection working
[mailer.git] / inc / purge / purge-mails.php
index ca8282eacf01ee907bad4720dbceb15ee7262132..4827c787df4b754e17017693d5688cbc35a4b807 100644 (file)
@@ -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);