]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/autopurge_functions.php
A lot CSS classes rewritten, please update all your themes.
[mailer.git] / inc / libs / autopurge_functions.php
index fe3cdd4b586c22d6f55f2e95f96677966c55089b..176e6e40c43ed5f846cee239e7093b99d834e203 100644 (file)
@@ -49,19 +49,19 @@ function addPointsAutoPurge ($userid, $points) {
 
        // Send out mail to user
        $message = loadEmailTemplate('member_autopurge_points', array('points' => $points), $userid);
-       sendEmail($userid, '{--AUTOPURGE_MEMBER_SUBJECT--}', $message);
+       sendEmail($userid, '{--MEMBER_AUTOPURGE_SUBJECT--}', $message);
 }
 
 // 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]