]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/autopurge_functions.php
Error fixed
[mailer.git] / inc / libs / autopurge_functions.php
index 3d90fba9279d398cd68e0d20a5bf86c2163afc3f..176e6e40c43ed5f846cee239e7093b99d834e203 100644 (file)
@@ -55,13 +55,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]