]> git.mxchange.org Git - mailer.git/blobdiff - inc/monthly/monthly_bonus.php
Yet another fix...
[mailer.git] / inc / monthly / monthly_bonus.php
index 0c5f9dd64ac25371b25515b00461b1bcb3baec8c..a014831aeb7ad64df282d2f04b53bd7e699c3e63 100644 (file)
@@ -41,7 +41,7 @@ if (!defined('__SECURITY')) {
 }
 
 // Do not execute when script is in CSS mode or no daily reset
-if (($CSS == 1) || (!isBooleanConstantAndTrue('__DAILY_RESET'))) return;
+if (($CSS == 1) || (!defined('__DAILY_RESET'))) return;
 
 // Get current month (2 digits)
 $curr = date("m", time());
@@ -73,13 +73,13 @@ if (($curr != $_CONFIG['last_month']) && ($_CONFIG['bonus_ranks'] > 0) && ($CSS
        if ($_CONFIG['bonus_ref_yn']   == "Y") $ADD .= " + bonus_ref";
 
        if (!empty($ADD)) {
-               $ADD .= "AND (0".$ADD.") > 0";
+               $ADD .= " AND (0".$ADD.") > 0";
        } // END - if
 
        // SQL string to check for accounts
        $result_main = SQL_QUERY_ESC("SELECT userid, email, (turbo_bonus + login_bonus + bonus_order + bonus_stats + bonus_ref) AS active_bonus
 FROM "._MYSQL_PREFIX."_user_data
-".$whereStatement1." %s".$ADD."
+".$whereStatement1."".$ADD."
 ORDER BY active_bonus DESC, userid LIMIT %s",
  array($whereStatement2), __FILE__, __LINE__);