X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fpurge%2Fpurge-general.php;h=a9865ecd8e4551abef2bc740803e5c9e8d1e7e93;hp=85e8bfe80af890d5086aeb41a6fe4eee0497a18b;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hpb=cd7d344ea7007cfa20413acd3e03e50f0ab86d86 diff --git a/inc/purge/purge-general.php b/inc/purge/purge-general.php index 85e8bfe80a..a9865ecd8e 100644 --- a/inc/purge/purge-general.php +++ b/inc/purge/purge-general.php @@ -17,7 +17,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -52,7 +52,7 @@ if (getAutoPurge() > 0) { $admin_points = '0'; // Then check for outdated mail order. We don't delete them just the confirmation links will be deleted. - $result = SQL_QUERY('SELECT + $result = sqlQuery('SELECT `id`, `userid`, `pool_id`, @@ -63,17 +63,17 @@ WHERE (UNIX_TIMESTAMP() - `timestamp_ordered`) >= {?auto_purge?} ORDER BY `userid` ASC', __FILE__, __LINE__); - if (!SQL_HASZERONUMS($result)) { + if (!ifSqlHasZeroNumRows($result)) { // Start deleting procedure $userid = NULL; $points = '0'; - while ($content = SQL_FETCHARRAY($result)) { + while ($content = sqlFetchArray($result)) { // Check if confirmation links are purged or not - $result_links = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s LIMIT 1", + $result_links = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s LIMIT 1", array(bigintval($content['id'])), __FILE__, __LINE__); // Is there one entry? - if (SQL_NUMROWS($result_links) == 1) { + if (sqlNumRows($result_links) == 1) { // At least one link was found, enougth to pay back the points if (($userid != $content['userid']) && (isValidId($userid)) && ($points > 0)) { // Directly add points back to senders account @@ -87,7 +87,7 @@ ORDER BY $admin_points += $content['price']; // Remove confirmation links from queue - addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s", + addSql(sqlQueryEscaped("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s", array(bigintval($content['id'])), __FILE__, __LINE__, FALSE)); // Update status of order @@ -95,7 +95,7 @@ ORDER BY } // END - if // Free memory - SQL_FREERESULT($result_links); + sqlFreeResult($result_links); } // END - while // Are some points collected? @@ -106,32 +106,32 @@ ORDER BY } // END - if // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); // Is the 'bonus' extension installed and activated? if (isExtensionActive('bonus', TRUE)) { // Check for bonus campaigns - $result = SQL_QUERY("SELECT `id`, `points` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `data_type`='SEND' AND `timestamp` <= {?auto_purge?} ORDER BY `id` ASC", __FILE__, __LINE__); - if (!SQL_HASZERONUMS($result)) { + $result = sqlQuery("SELECT `id`, `points` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `data_type`='SEND' AND `timestamp` <= {?auto_purge?} ORDER BY `id` ASC", __FILE__, __LINE__); + if (!ifSqlHasZeroNumRows($result)) { // Start deleting procedure $points = '0'; - while ($content = SQL_FETCHARRAY($result)) { + while ($content = sqlFetchArray($result)) { // Check if confirmation links are purged or not - $result_links = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s", + $result_links = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s", array(bigintval($content['id'])), __FILE__, __LINE__); - if (!SQL_HASZERONUMS($result_links)) { + if (!ifSqlHasZeroNumRows($result_links)) { // At least one link was found, enougth to pay back the points - $points += $content['points'] * SQL_NUMROWS($result_links); + $points += $content['points'] * sqlNumRows($result_links); // Free memory - SQL_FREERESULT($result_links); + sqlFreeResult($result_links); // Remove confirmation links from queue - addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s", + addSql(sqlQueryEscaped("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s", array(bigintval($content['id'])), __FILE__, __LINE__, FALSE)); // Update status of order - addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_bonus` SET `data_type`='DELETED' WHERE `id`=%s LIMIT 1", + addSql(sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_bonus` SET `data_type`='DELETED' WHERE `id`=%s LIMIT 1", array(bigintval($content['id'])), __FILE__, __LINE__, FALSE)); } // END - if } // END - while @@ -147,7 +147,7 @@ ORDER BY } // END - if // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); } // END - if // Add points from deleted accounts to jackpot, but here just add to notify mail