]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/autopurge_functions.php
Korn/csh support improved, if() block rewritten:
[mailer.git] / inc / libs / autopurge_functions.php
index 3d90fba9279d398cd68e0d20a5bf86c2163afc3f..613c10c5142432e90115e12a38f4fb5d66caec8d 100644 (file)
@@ -14,8 +14,6 @@
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
@@ -44,6 +42,12 @@ if (!defined('__SECURITY')) {
 
 // Add points in autopurge-mode
 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);
+       } // END - if
+
        // Add points over the ref system directly now
        addPointsDirectly('autopurge_add', $userid, $points);
 
@@ -55,13 +59,13 @@ function addPointsAutoPurge ($userid, $points) {
 // Checks wether auto-purging is active
 function isAutoPurgingActive () {
        // Do we have cache?
-       if (!isset($GLOBALS['auto_purging_active'])) {
+       if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
-               $GLOBALS['auto_purging_active'] = (getConfig('auto_purge_active') == 'Y');
+               $GLOBALS[__FUNCTION__] = (getConfig('auto_purge_active') == 'Y');
        } // END - if
 
        // Return cache
-       return $GLOBALS['auto_purging_active'];
+       return $GLOBALS[__FUNCTION__];
 }
 
 // [EOF]