]> git.mxchange.org Git - mailer.git/blobdiff - inc/filters.php
Do not check if a config entry is there in this situation
[mailer.git] / inc / filters.php
index 9c57230fb416e41d75b541cda7f0f161022bc65a..fcafc63c0ea18c7c25b6265986d489f6be06df24 100644 (file)
@@ -530,7 +530,7 @@ function FILTER_COMPILE_EXPRESSION_CODE ($filterData) {
                                $data = array(
                                        'matches'     => $matches,
                                        'key'         => $key,
-                                       'mode'        => getScriptOutputMode(),
+                                       'output_mode' => getScriptOutputMode(),
                                        'code'        => $filterData,
                                        'callback'    => $callback,
                                        'extra_func'  => $extraFunction,
@@ -603,8 +603,8 @@ function FILTER_RUN_RESET_INCLUDES () {
        // 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 (!isDebugResetEnabled()) {
                updateConfiguration('last_update', 'UNIX_TIMESTAMP()');
        } // END - if
 
@@ -615,7 +615,7 @@ function FILTER_RUN_RESET_INCLUDES () {
                        // 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
@@ -629,7 +629,7 @@ function FILTER_RUN_RESET_INCLUDES () {
                        // 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
@@ -659,13 +659,16 @@ function FILTER_FLUSH_OUTPUT () {
        outputHtml('');
 }
 
-// Prepares an SQL statement part for HTML mail and/or holiday depency
+// Prepares an SQL statement part for HTML mail and/or holiday dependency
 function FILTER_HTML_INCLUDE_USERS ($mode) {
        // Exclude no users by default
        $MORE = '';
 
        // HTML mail?
-       if ($mode == 'html') $MORE = " AND `html`='Y'";
+       if ($mode == 'html') {
+               $MORE = " AND `html`='Y'";
+       } // END - if
+
        if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
                // Add something for the holiday extension
                $MORE .= " AND `holiday_active`='N'";