]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/beg_functions.php
A lot more nice improvements!
[mailer.git] / inc / libs / beg_functions.php
index 759c83d64cbf6a2374387d5b79a36ad4149df362..583ec4c8a817bbd5cf9b7055d2ca93d39f9c8729 100644 (file)
@@ -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
 }