]> git.mxchange.org Git - mailer.git/blobdiff - inc/reset/reset_100_bonus.php
Unknown module in non-HTML mode, debug comments removed :(
[mailer.git] / inc / reset / reset_100_bonus.php
index b3686d40fc066004e140bb25dbf3cb30afab6a67..860af31134318f9cb90a00bf833e7875be156606 100644 (file)
@@ -44,7 +44,7 @@ if (!defined('__SECURITY')) {
 }
 
 // Do not execute when script is in CSS mode or no daily reset
-if ((getOutputMode() != 0) || (!isResetModeEnabled()) || (getConfig('beg_rallye') == 'Y')) return;
+if ((getOutputMode() != 0) || (!isResetModeEnabled())) return;
 //* DEBUG: */ outputHtml(basename(__FILE__)."<br />");
 
 // Check for 100% klickrate mails
@@ -53,7 +53,9 @@ $result_bonus = SQL_QUERY("SELECT
 FROM
        `{?_MYSQL_PREFIX?}_user_stats`
 WHERE
-       `max_rec`=`clicks` AND `clicks` > 0 AND `bonus_stats_active`='N'
+       `max_rec`=`clicks` AND
+       `clicks` > 0 AND
+       `bonus_stats_active`='N'
 ORDER BY
        `userid` ASC", __FILE__, __LINE__);