X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbeg_functions.php;h=8269062de04fac698463427569fe72b6576ff29c;hb=01c4a1aa0914ebb2ab1d5df3d592246fb86e50cb;hp=7eeb42072aee47488c02c9db1c4a48490499689d;hpb=22a33b87f9894a94efb71de7630f12129e34f83b;p=mailer.git diff --git a/inc/libs/beg_functions.php b/inc/libs/beg_functions.php index 7eeb42072a..8269062de0 100644 --- a/inc/libs/beg_functions.php +++ b/inc/libs/beg_functions.php @@ -1,7 +1,7 @@ 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") { + 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, $userid), __FUNCTION__, __LINE__); } else { // Add points to account + // @TODO Try to rewrite the following unset() unset($GLOBALS['ref_level']); - ADD_POINTS_REFSYSTEM("beg", $uid, $points, false, "0", $locked, strtolower(getConfig('beg_mode'))); + addPointsThroughReferalSystem('beg', $userid, $points, false, 0, $locked, strtolower(getConfig('beg_mode'))); } // Subtract begged points from member account if the admin has selected one - if (getConfig('beg_uid') > 0) { + if (getConfig('beg_userid') > 0) { // Subtract from this account - SUB_POINTS("beg_payout", getConfig('beg_uid'), $points); + subtractPoints('beg_payout', getConfig('beg_userid'), $points); } // END - if }