X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbeg_functions.php;h=f0208c5e0a938de1acb362648350f45d9913e369;hb=e1d636846bafc8ae71855595a2a2843463025e26;hp=7fd93d8743f276d905245a612e2c1e45f4d99268;hpb=508228c85fba8448d00865b1639cb8cd7a69e457;p=mailer.git diff --git a/inc/libs/beg_functions.php b/inc/libs/beg_functions.php index 7fd93d8743..f0208c5e0a 100644 --- a/inc/libs/beg_functions.php +++ b/inc/libs/beg_functions.php @@ -10,7 +10,7 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer den Bettel-Link * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * + * $Revision:: $ * * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * @@ -38,7 +38,7 @@ // 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); } @@ -46,17 +46,17 @@ if (!defined('__SECURITY')) { function BEG_ADD_POINTS ($uid, $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; + 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), __FUNCTION__, __LINE__); + array($points, $uid), __FUNCTION__, __LINE__); } else { // Add points to account unset($GLOBALS['ref_level']); - ADD_POINTS_REFSYSTEM("beg", $uid, $points, false, "0", $locked, strtolower(getConfig('beg_mode'))); + 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