]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/beg_functions.php
Minor rewrites to brackets, admin welcome page rewritten to use GET_TOTAL_DATA()
[mailer.git] / inc / libs / beg_functions.php
index 759c83d64cbf6a2374387d5b79a36ad4149df362..adfd3f549236fcf897dc433dea8b0a1991b2ba05 100644 (file)
@@ -38,12 +38,12 @@ if (!defined('__SECURITY')) {
 }
 
 // Add points to user or begging rallye account
-function BEG_ADD_POINTS($uid, $points) {
+function BEG_ADD_POINTS ($uid, $points) {
        global $_CONFIG;
 
        // Set mode depending on how many mails the member has to confirm
        $locked = false;
-       if (($ref_payout > 0) && ($_CONFIG['allow_direct_pay'] == "N")) $locked = true;
+       if (($_CONFIG['ref_payout'] > 0) && ($_CONFIG['allow_direct_pay'] == "N")) $locked = true;
 
        // Is begging rallye active?
        if ($_CONFIG['beg_rallye'] == "Y") {
@@ -53,13 +53,13 @@ function BEG_ADD_POINTS($uid, $points) {
        } else {
                // Add points to account
                unset($DEPTH);
-               ADD_POINTS_REFSYSTEM($uid, $points, false, "0", $locked, strtolower($_CONFIG['beg_mode']));
+               ADD_POINTS_REFSYSTEM("beg", $uid, $points, false, "0", $locked, strtolower($_CONFIG['beg_mode']));
        }
 
        // Subtract begged points from member account if the admin has selected one
        if ($_CONFIG['beg_uid'] > 0) {
                // Subtract from this account
-               SUB_POINTS($_CONFIG['beg_uid'], $points);
+               SUB_POINTS("beg_payout", $_CONFIG['beg_uid'], $points);
        } // END - if
 }