Fixes for reset (missing config entries)
authorRoland Häder <roland@mxchange.org>
Sat, 31 Oct 2009 14:55:27 +0000 (14:55 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 31 Oct 2009 14:55:27 +0000 (14:55 +0000)
inc/filters.php

index 4204fbb3c1f2f57926af7ebdd631306282a1e968..99dfa919cc13d3733e3c22dfa6ac7ef5c890ca65 100644 (file)
@@ -510,7 +510,7 @@ function FILTER_RUN_RESET_INCLUDES () {
                        mergeIncludePool('reset', getArrayFromDirectory('inc/weekly/', 'weekly_'));
 
                        // Update config
-                       if (getConfig('DEBUG_WEEKLY') != 'Y') updateConfiguration('last_week', $currWeek);
+                       if ((!isConfigEntrySet('DEBUG_WEEKLY')) && (getConfig('DEBUG_WEEKLY') != 'Y')) updateConfiguration('last_week', $currWeek);
                } // END - if
 
                // Create current month mark
@@ -522,7 +522,7 @@ function FILTER_RUN_RESET_INCLUDES () {
                        mergeIncludePool('reset', getArrayFromDirectory('inc/monthly/', 'monthly_'));
 
                        // Update config
-                       if (getConfig('DEBUG_MONTHLY') != 'Y') updateConfiguration('last_month', $currMonth);
+                       if ((!isConfigEntrySet('DEBUG_MONTHLY')) && (getConfig('DEBUG_MONTHLY') != 'Y')) updateConfiguration('last_month', $currMonth);
                } // END - if
        } // END - if