]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/beg_functions.php
A lot while() conditions rewritten to SQL_FETCHARRAY(), see bug #107, @TODO tags...
[mailer.git] / inc / libs / beg_functions.php
index 7eeb42072aee47488c02c9db1c4a48490499689d..8803990fd094ccf2f73ce15c36f38d3335044491 100644 (file)
@@ -39,17 +39,15 @@ if (!defined('__SECURITY')) {
 
 // Add points to user or begging rallye account
 function BEG_ADD_POINTS ($uid, $points) {
-       global $_CONFIG;
-
        // Set mode depending on how many mails the member has to confirm
        $locked = false;
-       if ((getConfig('ref_payout') > 0) && (getConfig('allow_direct_pay') == "N")) $locked = true;
+       if ((getConfig('ref_payout') > 0) && (getConfig('allow_direct_pay') != "Y")) $locked = true;
 
        // Is begging rallye active?
        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",
-                       array($points, $uid), __FILE__, __LINE__);
+               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET beg_points=beg_points+%s WHERE userid=%s LIMIT 1",
+                       array($points, $uid), __FUNCTION__, __LINE__);
        } else {
                // Add points to account
                unset($GLOBALS['ref_level']);