]> git.mxchange.org Git - mailer.git/blobdiff - inc/daily/daily_surfbar.php
Some improvements:
[mailer.git] / inc / daily / daily_surfbar.php
index 160fba484ccdb0a54bbadb3196b0cdb67a2e879e..b1d1db4cec00d3d3a3c597869844ccfa1397bcaf 100644 (file)
@@ -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 *
@@ -42,17 +42,20 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('surfbar')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       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.');