X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=176e6e40c43ed5f846cee239e7093b99d834e203;hb=5736dfb1b51bff78b3594a166f350e76784fa0ff;hp=3d90fba9279d398cd68e0d20a5bf86c2163afc3f;hpb=cb77ae5b217928f9f9cdc317a32c3b3994b68741;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index 3d90fba927..176e6e40c4 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -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]