From: Roland Häder Date: Sat, 31 Oct 2009 14:55:27 +0000 (+0000) Subject: Fixes for reset (missing config entries) X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=35f715073242e1cfca61704c0049ee676a1c508b Fixes for reset (missing config entries) --- diff --git a/inc/filters.php b/inc/filters.php index 4204fbb3c1..99dfa919cc 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -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