X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Frallye_functions.php;h=b7cb9d06359eac502f7b96a1a34e2ccf38afabf9;hp=ad8d6c5f15139b4ee33102c70a208d6ace4d4dcf;hb=0369c36aaab5af6ed44da1e13a53baef285f79b4;hpb=43885129ac24cee5545a8a5ad51e90aa182fdf46;ds=sidebyside diff --git a/inc/libs/rallye_functions.php b/inc/libs/rallye_functions.php index ad8d6c5f15..b7cb9d0635 100644 --- a/inc/libs/rallye_functions.php +++ b/inc/libs/rallye_functions.php @@ -94,7 +94,7 @@ function RALLYE_AUTOSTART_RALLYES($result) // Get refs by userid $cnt = RALLYE_GET_REFCOUNT($uid); - if (empty($cnt)) $cnt = "0"; // Added prevent some unknown troubles... :-? + if (empty($cnt)) $cnt = 0; // Added prevent some unknown troubles... :-? // Check if line is already included... $result_ref = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_rallye_users WHERE rallye_id=%s AND userid=%s LIMIT 1", @@ -230,7 +230,7 @@ LIMIT 1", array(bigintval($uid), $_CONFIG['ref_payout'], $since), __FILE__, __LI list($refpoints) = SQL_FETCHROW($result_ref); SQL_FREERESULT($result_ref); - if (empty($refpoints)) $refpoints = "0"; + if (empty($refpoints)) $refpoints = 0; // And subtract start refs $cnt -= $refs; @@ -316,7 +316,7 @@ VALUES ('%s', '%s', '0')", $DATA['now_t'] = MAKE_DATETIME(time(), "2"); $DATA['title'] = $title; $DATA['id'] = $id; // ID for the rallye details link - $DATA['ref'] = "0"; + $DATA['ref'] = 0; // Load prices $prices = RALLYE_ADD_PRICES($id); @@ -352,7 +352,7 @@ function RALLYE_EXPIRE_RALLYES($result) // Just count... $TOTAL = 0; - foreach($prices['uid'] as $key=>$uid) + foreach($prices['uid'] as $key => $uid) { // Check status // active = 1: account is still confirmed @@ -384,7 +384,7 @@ LIMIT 1", array(bigintval($uid), $since), __FILE__, __LINE__); array(bigintval($id)), __FILE__, __LINE__); // Run array through (by uid is the most important 2nd-level-array) - foreach($prices['uid'] as $key=>$uid) + foreach($prices['uid'] as $key => $uid) { // Allow valid and active users with at least one ref to get points if (($uid > 0) && ($prices['ref'][$key] > 0) && ($prices['active'][$key] == 1) && ($prices['cpoints'][$key] > 0)) @@ -551,7 +551,7 @@ WHERE d.status='CONFIRMED' AND d.max_mails > 0 AND d.mails_confirmed >= %s AND p list($refpoints) = SQL_FETCHROW($result_ref); SQL_FREERESULT($result_ref); - if (empty($refpoints)) $refpoints = "0"; + if (empty($refpoints)) $refpoints = 0; // Store calculated new refs to array $users['uid'][] = $uid; @@ -569,7 +569,7 @@ WHERE d.status='CONFIRMED' AND d.max_mails > 0 AND d.mails_confirmed >= %s AND p $prices = RALLYE_LOAD_PRICES_ARRAY($rallye); // Merge users into prices - foreach ($prices['level'] as $k=>$lvl) + foreach ($prices['level'] as $k => $lvl) { $prices['uid'][$k] = $users['uid'][$k]; if (empty($prices['uid'][$k])) $prices['uid'][$k] = "---"; @@ -748,7 +748,7 @@ function RALLYE_GET_REFCOUNT($uid, $old=0) { // Get refs from cache $cnt = 0; - foreach ($cacheArray['ref_system']['userid'] as $id=>$u_id) + foreach ($cacheArray['ref_system']['userid'] as $id => $u_id) { if (($u_id == $uid) && ($cacheArray['ref_system']['level'][$id] == 0)) { @@ -798,7 +798,7 @@ WHERE s.userid=%s AND s.level=0", array(bigintval($uid)), __FILE__, __LINE__); SQL_FREERESULT($result_ref); if (empty($cnt)) { - $cnt = "0"; + $cnt = 0; } else {