]> git.mxchange.org Git - mailer.git/blobdiff - inc/autopurge/purge-tsks.php
MyISAM/InnoDB support added
[mailer.git] / inc / autopurge / purge-tsks.php
index 7c82489dddd77ea39b34263c5fb79352d255d832..5cdc442315db6cb95759ff3b23fb9cd505eb92c8 100644 (file)
@@ -38,7 +38,7 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Abort if autopurge is not active or disabled by admin
-if ((!EXT_IS_ACTIVE("autopurge")) || (getConfig('auto_purge_active') == "N")) {
+if ((!EXT_IS_ACTIVE("autopurge")) || (getConfig('auto_purge_active') != "Y")) {
        // Abort here
        return false;
 } // END - if
@@ -46,12 +46,12 @@ if ((!EXT_IS_ACTIVE("autopurge")) || (getConfig('auto_purge_active') == "N")) {
 // Check version (must be > 0.0)
 if ((GET_EXT_VERSION("task") > "0.0") && (getConfig('ap_tasks') == "Y")) {
        // Since when shall we purge?
-       $since = bigintval(getConfig('ap_tasks_time'));
+       $since = getConfig(('ap_tasks_time'));
 
        // Purge deleted tasks (no notification to admin)
        SQL_QUERY_ESC("DELETE LOW_PRIORITY
 FROM `{!_MYSQL_PREFIX!}_task_system`
-WHERE status='DELETED' AND task_created <= (UNIX_TIMESTAMP() - %s)",
+WHERE `status`='DELETED' AND task_created <= (UNIX_TIMESTAMP() - %s)",
                array($since), __FILE__, __LINE__);
        $DELETED = SQL_AFFECTEDROWS();