]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/autopurge_functions.php
Better check
[mailer.git] / inc / libs / autopurge_functions.php
index 12181ed9dacfe6bea89b51235c9b51af6f7ace36..fde4b075873ca238a44e58bceae8d638241f002f 100644 (file)
@@ -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__])) {