]> git.mxchange.org Git - mailer.git/blobdiff - inc/daily/daily_bonus.php
Rewrote reset and some extensions:
[mailer.git] / inc / daily / daily_bonus.php
index 6391405698a2ad9ac8ae3530a0f7a2b28d21199a..c3c1423fbbdb6cbade8f5de79def2a581d6b3eb7 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 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;
 }
 
@@ -52,17 +52,6 @@ if (!defined('__SECURITY')) {
 // Purge expired entries in _bonus_turbo
 purgeExpiredTurboBonus();
 
-// Reset accounts
-SQL_QUERY('UPDATE
-       `{?_MYSQL_PREFIX?}_user_data`
-SET
-       `turbo_bonus`=0,
-       `login_bonus`=0,
-       `bonus_order`=0,
-       `bonus_stats`=0,
-       `bonus_ref`=0',
-       __FILE__, __LINE__);
-
 // Debug line
 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');