X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=769099587ece6273c4c9a79d754b7d5562f57d70;hb=f2edf32502b2774dc17ef419a2e6a1c60e361c0a;hp=270c7a9f90fb98be1589434d8cf62122ebb80539;hpb=1410e014d23f244e73d3a7916a61c2473416bab9;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index 270c7a9f90..769099587e 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,20 +45,21 @@ 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 - addPointsDirectly('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? + // Is there cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it $GLOBALS[__FUNCTION__] = (getConfig('auto_purge_active') == 'Y'); @@ -70,7 +71,7 @@ function isAutoPurgingActive () { // Wrapper for 'autopurge_inactive function getAutopurgeInactive () { - // Do we have cache? + // Is there cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it $GLOBALS[__FUNCTION__] = (getConfig('autopurge_inactive') == 'Y'); @@ -80,9 +81,9 @@ 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? + // Is there cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it $GLOBALS[__FUNCTION__] = (getAutopurgeInactive() == 'Y');