X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbeg_functions.php;h=fe4fc5338e9233653ae5897a43def91c956faa55;hb=26ea563a90454a2cde58f8cd134542a0d8f14780;hp=c80c3e129dde7fde43c784c128ef4c22c3f9676c;hpb=7b0f17cd637e388049d2167811e4332cec1e979b;p=mailer.git diff --git a/inc/libs/beg_functions.php b/inc/libs/beg_functions.php index c80c3e129d..fe4fc5338e 100644 --- a/inc/libs/beg_functions.php +++ b/inc/libs/beg_functions.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,12 +38,11 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); + die(); } // Add points to user or begging rallye account -function BEG_ADD_POINTS ($uid, $points) { +function addPointsBeg ($userid, $points) { // Set mode depending on how many mails the member has to confirm $locked = false; if ((getConfig('ref_payout') > 0) && (getConfig('allow_direct_pay') != 'Y')) $locked = true; @@ -51,18 +50,19 @@ function BEG_ADD_POINTS ($uid, $points) { // 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), __FUNCTION__, __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 }