X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fdaily%2Fdaily_surfbar.php;h=a685f1772ca2d22b45eade12dd84229f1a5b4dc1;hp=a0d1af6299d874f54404c5abebaf996357142e99;hb=e9da1508b2a3ccbf63adc999981674740a47e074;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341 diff --git a/inc/daily/daily_surfbar.php b/inc/daily/daily_surfbar.php index a0d1af6299..a685f1772c 100644 --- a/inc/daily/daily_surfbar.php +++ b/inc/daily/daily_surfbar.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Dinge, die beim taeglichen Reset erledigt werden * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,21 +33,24 @@ // 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('surfbar')) { - logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.'); + if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-surfbar disabled.'); return; } // Debug line //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.'); +// Get value +$counter = getConfig('surfbar_daily_counter'); + // Reset surfbar counter -updateConfiguration(array('surfbar_daily_counter', 'surfbar_yester_counter'), array(0, getConfig('surfbar_daily_counter'))); -setConfigEntry('surfbar_yester_counter', getConfig('surfbar_daily_counter')); +updateConfiguration(array('surfbar_daily_counter', 'surfbar_yester_counter'), array(0, $counter)); setConfigEntry('surfbar_daily_counter' , 0); +setConfigEntry('surfbar_yester_counter', $counter); // Debug line //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');