X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fautopurge%2Fpurge-tsks.php;h=40de412f3f92b8206ecefebccc58f8704fedfe73;hp=708c880344573c26930a3c0a3d934d2205b59f6c;hb=d92a340159ca45047eafc111fcac64933a7babeb;hpb=a6f5926aeaf7917cb4bca3d29ffd0e8e6290fb4e diff --git a/inc/autopurge/purge-tsks.php b/inc/autopurge/purge-tsks.php index 708c880344..40de412f3f 100644 --- a/inc/autopurge/purge-tsks.php +++ b/inc/autopurge/purge-tsks.php @@ -47,8 +47,8 @@ if ((!isExtensionActive('autopurge')) || (getConfig('auto_purge_active') != 'Y') return false; } // END - if -// Check version (must be > 0.0) -if ((isExtensionInstalledAndNewer('task') > '0.0') && (getConfig('autopurge_tasks') == 'Y')) { +// Check version (must be >= 0.1.9) +if ((isExtensionInstalledAndNewer('task', '0.1.9')) && (getConfig('autopurge_tasks') == 'Y')) { // Purge deleted tasks (no notification to admin) SQL_QUERY("DELETE LOW_PRIORITY FROM @@ -63,7 +63,7 @@ WHERE // Do we need to send a notification? if (($deletedTasks > 0) && (getConfig('ap_tasks_notify') == 'Y')) { // Send out email to admin - sendAdminNotification(getMessage('AUTOPURGE_ADMIN_TASKS_SUBJECT'), 'admin_autopurge_tsks', $deletedTasks, ''); + sendAdminNotification(getMessage('AUTOPURGE_ADMIN_TASKS_SUBJECT'), 'admin_autopurge_tsks', $deletedTasks); } // END - if } // END - if