X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=fde4b075873ca238a44e58bceae8d638241f002f;hb=75a8462000713099c6abd7aa1e16c24d8507b7bb;hp=12181ed9dacfe6bea89b51235c9b51af6f7ace36;hpb=09fd6484d1eaf735476270c33692f799bc0c9590;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index 12181ed9da..fde4b07587 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -45,19 +45,19 @@ function addPointsAutoPurge ($userid, $points) { // Is the userid valid? if (!isValidUserId($userid)) { // Please report all these bugs - debug_report_bug(__FUNCTION__, __LINE__, 'Invalid call. userid=' . $userid . ',points=' . $points); + reportBug(__FUNCTION__, __LINE__, 'Invalid call. userid=' . $userid . ',points=' . $points); } // END - if // Add points over the ref system directly now - initReferalSystem(); - addPointsThroughReferalSystem('autopurge_add', $userid, $points); + initReferralSystem(); + addPointsThroughReferralSystem('autopurge_add', $userid, $points); // Send out mail to user $message = loadEmailTemplate('member_autopurge_points', array('points' => $points), $userid); sendEmail($userid, '{--MEMBER_AUTOPURGE_SUBJECT--}', $message); } -// Checks wether auto-purging is enabled +// Checks whether auto-purging is enabled function isAutoPurgingActive () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { @@ -81,7 +81,7 @@ function getAutopurgeInactive () { return $GLOBALS[__FUNCTION__]; } -// Checks wether purging of inactive accounts is enabled +// Checks whether purging of inactive accounts is enabled function isAutopurgeInactiveEnabled () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) {