]> git.mxchange.org Git - mailer.git/blobdiff - inc/daily/daily_100_bonus.php
Rewrote reset and some extensions:
[mailer.git] / inc / daily / daily_100_bonus.php
index f51b3dd986fd3b99181f495891a5f9c3a9c68f01..b52693eb1d37687d2a90442aa1867b8253eb24bd 100644 (file)
@@ -6,7 +6,7 @@
  * -------------------------------------------------------------------- *
  * File              : daily_100_bonus.php                              *
  * -------------------------------------------------------------------- *
- * Short description : Check for 100% clickrate order                   *
+ * Short description : Check for 100% click rate order                  *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Nach Mailbestaetigungen mit 100% Klickrate s.    *
  * -------------------------------------------------------------------- *
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 // Some security stuff...
 if (!defined('__SECURITY')) {
        die();
-} elseif ((!isHtmlOutputMode()) || (!isResetModeEnabled())) {
-       // Do not execute when script is in CSS mode or no daily reset
+} elseif ((!isHtmlOutputMode()) || (!isDailyResetEnabled())) {
+       // Do not execute when script is in non-HTML mode or no daily reset
        return;
 } elseif (!isExtensionActive('bonus')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-bonus disabled.');
        return;
 }
 
@@ -51,7 +51,12 @@ if (!defined('__SECURITY')) {
 
 // Check for 100% klickrate mails
 $result_bonus = SQL_QUERY("SELECT
-       `id`, `userid`, `subject`, `timestamp_ordered`, `clicks`, `url`
+       `id`,
+       `userid`,
+       `subject`,
+       `timestamp_ordered`,
+       `clicks`,
+       `url`
 FROM
        `{?_MYSQL_PREFIX?}_user_stats`
 WHERE
@@ -81,7 +86,7 @@ if (!SQL_HASZERONUMS($result_bonus)) {
        } // END - while
 
        // Handle bonus points
-       handleBonusPoints(getConfig('bonus_stats'));
+       handleBonusPoints(getBonusStats(), $content['userid']);
 } // END - if
 
 // Free memory