X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fpurge%2Fpurge-unconfirmed.php;h=bb61a6e37da6e2822d89d4369c532bb261c0c937;hp=0517925652473c1179536c52c4f5f069a673fe31;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hpb=2df9f7a53f8b1dd5164f87824a324ccb3b6634cb diff --git a/inc/purge/purge-unconfirmed.php b/inc/purge/purge-unconfirmed.php index 0517925652..bb61a6e37d 100644 --- a/inc/purge/purge-unconfirmed.php +++ b/inc/purge/purge-unconfirmed.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,13 +43,13 @@ if (!defined('__SECURITY')) { // Abort if autopurge is not active or disabled by admin if ((!isExtensionActive('autopurge')) || (!isAutoPurgingActive())) { // Abort here - return false; + return FALSE; } // END - if // Shall I auto-purge unconfirmed accounts? if (getConfig('autopurge_unconfirmed') == 'Y') { // Init variables and find unconfirmed accounts which I shall auto-purge; - $result_uncon = SQL_QUERY("SELECT + $result_uncon = sqlQuery("SELECT `userid`, `email`, `joined` @@ -60,13 +60,13 @@ WHERE (UNIX_TIMESTAMP() - `joined`) >= {?ap_unconfirmed_time?} ORDER BY `userid` ASC", __FILE__, __LINE__); - if (!SQL_HASZERONUMS($result_uncon)) { + if (!ifSqlHasZeroNumRows($result_uncon)) { // Prepare variable... $userids = ''; $content['time'] = (getApUnconfirmedTime() / 60 / 60); // Delete inactive accounts - while ($row = SQL_FETCHARRAY($result_uncon)) { + while ($row = sqlFetchArray($result_uncon)) { // Merge both arrays $content = merge_array($content, $row); @@ -81,16 +81,16 @@ ORDER BY } // END - while // Remove last comma - $userids = str_replace(', ', chr(10), substr($userids, 0, -2)); + $userids = str_replace(', ', PHP_EOL, substr($userids, 0, -2)); // Send mail notification to admin if (getConfig('ap_un_notify') == 'Y') { - sendAdminNotification('{--ADMIN_AUTOPURGE_UNCONFIRMED_SUBJECT--}', 'admin_autopurge_unconfirmed', $userids); + sendAdminNotification('{--ADMIN_AUTOPURGE_UNCONFIRMED_SUBJECT--}', 'admin_purge_unconfirmed', $userids); } // END - if } // END - if // Free memory - SQL_FREERESULT($result_uncon); + sqlFreeResult($result_uncon); } // END - if // [EOF]