X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fdaily%2Fdaily_bonus.php;h=b09d56665392c091477574e4b96b878cdd8004a0;hb=35fd597b272983427fd88f541ea55642e0b42c9e;hp=654b50b9081b9a5d5eeb42897446e847051ee32f;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2;p=mailer.git diff --git a/inc/daily/daily_bonus.php b/inc/daily/daily_bonus.php index 654b50b908..b09d566653 100644 --- a/inc/daily/daily_bonus.php +++ b/inc/daily/daily_bonus.php @@ -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 - 2013 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 * @@ -38,11 +38,11 @@ // 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.');