]> git.mxchange.org Git - mailer.git/blobdiff - inc/autopurge/purge-tsks.php
Die auch...
[mailer.git] / inc / autopurge / purge-tsks.php
index 470c7cb2ea2d9f0783ecd12536c32dc241b8fc2b..dde1e7c77e30583e22c9dbfd7ac427632ebe44f6 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
@@ -50,8 +50,8 @@ if ((GET_EXT_VERSION("task") > "0.0") && (getConfig('ap_tasks') == "Y")) {
 
        // 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)",
+FROM `{!_MYSQL_PREFIX!}_task_system`
+WHERE `status`='DELETED' AND task_created <= (UNIX_TIMESTAMP() - %s)",
                array($since), __FILE__, __LINE__);
        $DELETED = SQL_AFFECTEDROWS();