0.0) if ((getExtensionVersion('task') > '0.0') && (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__); // Get deleted rows $DELETED = SQL_AFFECTEDROWS(); // Do we need to send a notification? if (($DELETED > 0) && (getConfig('ap_tasks_notify') == 'Y')) { // Send out email to admin sendAdminNotification(getMessage('AUTOPURGE_ADMIN_TASKS_SUBJECT'), "admin_autopurge_tsks", $DELETED, ''); } // END - if } // END - if // ?>