]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/beg_functions.php
All database names are now 'back-ticked' and constant _MYSQL_PREFIX is wrapped. Partl...
[mailer.git] / inc / libs / beg_functions.php
index 8ab5bf13a12fedfe3ab2c1cd6a6e571f63c1db7e..e6c17e9004950918ae22b7220eba8e5476e87838 100644 (file)
@@ -43,23 +43,23 @@ function BEG_ADD_POINTS ($uid, $points) {
 
        // Set mode depending on how many mails the member has to confirm
        $locked = false;
-       if (($_CONFIG['ref_payout'] > 0) && ($_CONFIG['allow_direct_pay'] == "N")) $locked = true;
+       if ((getConfig('ref_payout') > 0) && (getConfig('allow_direct_pay') == "N")) $locked = true;
 
        // Is begging rallye active?
-       if ($_CONFIG['beg_rallye'] == "Y") {
+       if (getConfig('beg_rallye') == "Y") {
                // Add points to rallye account
-               SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET beg_points=beg_points+%s WHERE userid=%s LIMIT 1",
+               SQL_QUERY_ESC("UPDATE `{!MYSQL_PREFIX!}_user_data` SET beg_points=beg_points+%s WHERE userid=%s LIMIT 1",
                        array($points, $uid), __FILE__, __LINE__);
        } else {
                // Add points to account
-               unset($DEPTH);
-               ADD_POINTS_REFSYSTEM("beg", $uid, $points, false, "0", $locked, strtolower($_CONFIG['beg_mode']));
+               unset($GLOBALS['ref_level']);
+               ADD_POINTS_REFSYSTEM("beg", $uid, $points, false, "0", $locked, strtolower(getConfig('beg_mode')));
        }
 
        // Subtract begged points from member account if the admin has selected one
-       if ($_CONFIG['beg_uid'] > 0) {
+       if (getConfig('beg_uid') > 0) {
                // Subtract from this account
-               SUB_POINTS("beg_payout", $_CONFIG['beg_uid'], $points);
+               SUB_POINTS("beg_payout", getConfig('beg_uid'), $points);
        } // END - if
 }