X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmonthly%2Fmonthly_bonus.php;h=c11ad3c823703cee6d2a9e64e5cd969416ddeacf;hp=459afa67a00f32bc1e7ead0cd9a7b32db5844d6f;hb=a9a5edafa0c323a7f33d14e0cef9629c940896ff;hpb=a84801467693b6adc9e9a984a30c79ccbc6622db diff --git a/inc/monthly/monthly_bonus.php b/inc/monthly/monthly_bonus.php index 459afa67a0..c11ad3c823 100644 --- a/inc/monthly/monthly_bonus.php +++ b/inc/monthly/monthly_bonus.php @@ -69,17 +69,19 @@ if (($curr != $_CONFIG['last_month']) && ($_CONFIG['bonus_ranks'] > 0) && ($CSS if ($_CONFIG['bonus_stats_yn'] == "Y") $ADD .= " + bonus_stats"; if ($_CONFIG['bonus_ref_yn'] == "Y") $ADD .= " + bonus_ref"; + // Shall we add some entries? if (!empty($ADD)) { - $ADD .= " AND (0".$ADD.") > 0"; + $whereStatement1 .= " AND (0".$ADD.") > 0"; } // END - if - // SQL string to check for accounts - $result_main = SQL_QUERY_ESC("SELECT userid, email, gender, surname, family, (turbo_bonus + login_bonus + bonus_order + bonus_stats + bonus_ref) AS points + // Run SQL string to check for accounts + $result_main = SQL_QUERY_ESC("SELECT userid, email, gender, surname, family, (0".$ADD.") AS points FROM "._MYSQL_PREFIX."_user_data ".$whereStatement1."".$ADD." ORDER BY active_bonus DESC, userid LIMIT %s", - array($whereStatement2), __FILE__, __LINE__); + array($whereStatement2), __FILE__, __LINE__); + // Some entries were found? if (SQL_NUMROWS($result_main) > 0) { // Load our winners... while ($content = SQL_FETCHARRAY($result_main)) {