X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fautopurge%2Fpurge-tsks.php;h=3e1c97b4a84d9121c3afbfb4bee3a9db7d3edd61;hb=cf3765c38cf0a76f396aca291f71858936e92956;hp=d39f7f198125cd15ef7539c2ff303694b3106414;hpb=3fce27f277e3316c33a7e904ef499370c0c95dde;p=mailer.git diff --git a/inc/autopurge/purge-tsks.php b/inc/autopurge/purge-tsks.php index d39f7f1981..3e1c97b4a8 100644 --- a/inc/autopurge/purge-tsks.php +++ b/inc/autopurge/purge-tsks.php @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -47,14 +48,15 @@ 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 `{?_MYSQL_PREFIX?}_task_system` WHERE - `status`='DELETED' AND `task_created` <= (UNIX_TIMESTAMP() - {?ap_tasks_time?})", __FILE__, __LINE__); + `status`='DELETED' AND + `task_created` <= (UNIX_TIMESTAMP() - {?ap_tasks_time?})", __FILE__, __LINE__); // Get deleted rows $deletedTasks = SQL_AFFECTEDROWS(); @@ -62,7 +64,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('{--ADMIN_AUTOPURGE_TASKS_SUBJECT--}', 'admin_autopurge_tsks', $deletedTasks); } // END - if } // END - if