X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Flibs%2Fbeg_functions.php;h=f0208c5e0a938de1acb362648350f45d9913e369;hb=4d64a8575593f7cc8f69aec74d14c29ba6e8ef6c;hp=adfd3f549236fcf897dc433dea8b0a1991b2ba05;hpb=1cba5937e02787a8a7e8d5ff93b21b4b58f1c73e;p=mailer.git diff --git a/inc/libs/beg_functions.php b/inc/libs/beg_functions.php index adfd3f5492..f0208c5e0a 100644 --- a/inc/libs/beg_functions.php +++ b/inc/libs/beg_functions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer den Bettel-Link * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * 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 * * For more information visit: http://www.mxchange.org * @@ -33,33 +38,31 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // 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 (($_CONFIG['ref_payout'] > 0) && ($_CONFIG['allow_direct_pay'] == "N")) $locked = true; + if ((getConfig('ref_payout') > 0) && (getConfig('allow_direct_pay') != 'Y')) $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", - 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($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 }