// Get more daily reset scripts
setIncludePool('reset', getArrayFromDirectory('inc/daily/', 'daily_'));
- // Update database
- if ((!isConfigEntrySet('DEBUG_RESET')) || (!isDebugResetEnabled())) {
+ // Update configuration if this reset is not being debugged
+ if ((!isConfigEntrySet('DEBUG_RESET')) && (!isDebugResetEnabled())) {
updateConfiguration('last_update', 'UNIX_TIMESTAMP()');
} // END - if
// Include weekly reset scripts
mergeIncludePool('reset', getArrayFromDirectory('inc/weekly/', 'weekly_'));
- // Update config if not in debug mode
+ // Update configuration if this reset is not being debugged
if (!isWeeklyResetDebugEnabled()) {
updateConfiguration('last_week', getWeek());
} // END - if
// Include monthly reset scripts
mergeIncludePool('reset', getArrayFromDirectory('inc/monthly/', 'monthly_'));
- // Update config
+ // Update configuration if this reset is not being debugged
if (!isMonthlyResetDebugEnabled()) {
updateConfiguration('last_month', $currMonth);
} // END - if