]> git.mxchange.org Git - mailer.git/blobdiff - inc/purge/purge-tasks.php
Opps, not all elements for sprintf() has been set.
[mailer.git] / inc / purge / purge-tasks.php
index 86320888dde9cc801d288cb6abf18ee6accbb328..607237a1983353db0c031e8d7ebc4a34fdd5e7b9 100644 (file)
@@ -49,7 +49,7 @@ if ((!isExtensionActive('autopurge')) || (!isAutoPurgingActive()) || (getConfig(
 // Check version (must be >= 0.1.9)
 if ((isExtensionInstalledAndNewer('task', '0.1.9')) && (getConfig('autopurge_tasks') == 'Y')) {
        // Select all tasks that needs purging
-       $result = SQL_QUERY("SELECT
+       $result = sqlQuery("SELECT
        `id`,
        `assigned_admin`,
        `userid`,
@@ -64,10 +64,10 @@ WHERE
        (UNIX_TIMESTAMP() - `task_created`) >= {?ap_tasks_time?}", __FILE__, __LINE__);
 
        // Send out a notification?
-       if (!SQL_HASZERONUMS($result)) {
+       if (!ifSqlHasZeroNums($result)) {
                // Init output and load all rows
                $output = ''; $ids = array();
-               while ($row = SQL_FETCHARRAY($result)) {
+               while ($row = sqlFetchArray($result)) {
                        // "Translate" creation timestamp
                        $row['task_created'] = generateDateTime($row['task_created'], '1');
 
@@ -80,19 +80,19 @@ WHERE
 
                // Init content array
                $content = array(
-                       'count' => SQL_NUMROWS($result),
+                       'count' => sqlNumRows($result),
                        'rows'  => $output
                );
 
                // Delete all tasks
-               SQL_QUERY('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id` IN (' . implode(', ', $ids) . ')');
+               sqlQuery('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id` IN (' . implode(', ', $ids) . ')', __FILE__, __LINE__);
 
                // Send out email to admin
                sendAdminNotification('{--ADMIN_AUTOPURGE_TASKS_SUBJECT--}', 'admin_purge_task', $content);
        } // END - if
 
        // Free result
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 } // END - if
 
 //