]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter-functions.php
Content-Length: 1 caused the slow response... :(
[mailer.git] / inc / filter-functions.php
index 4c3cae095dd75dd03a5e461401e51e0f1501191b..b797f90f15130559594b1710859f0950c6384d43 100644 (file)
@@ -163,7 +163,7 @@ ORDER BY
 
        // Compiling code
        registerFilter('compile_code', 'COMPILE_CONFIG');
-       registerFilter('compile_code', 'COMPILE_EXTENSION');
+       registerFilter('compile_code', 'COMPILE_EXPRESSION_CODE');
 
        // Generic extension update filters
        registerFilter('extension_update', 'UPDATE_EXTENSION_DATA');
@@ -232,7 +232,7 @@ function unregisterFilter ($filterName, $filterFunction, $force = false, $dry_ru
        // Is that filter there?
        if ((!isset($GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction])) && ($force === false)) {
                // Not found, so abort here
-               addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_NOT_REMOVED'), array($filterFunction, $filterName));
+               addFatalMessage(__FUNCTION__, __LINE__, sprintf(getMessage('FILTER_FAILED_NOT_REMOVED'), $filterFunction, $filterName));
                return false;
        } // END - if
 
@@ -247,7 +247,7 @@ function unregisterFilter ($filterName, $filterFunction, $force = false, $dry_ru
 // "Runs" the given filters, data is optional and can be any type of data
 function runFilterChain ($filterName, $data = null) {
        // Is that filter chain there?
-       if (!isset($GLOBALS['cache_array']['filter']['chains'][$filterName])) {
+       if ((!isset($GLOBALS['cache_array']['filter']['chains'][$filterName])) && (isDebugModeEnabled())) {
                // We should find all these non-existing filter chains
                //* Only for tracking: */ if ($filterName != 'sql_admin_extra_data') {
                //* Only for tracking: */ debug_report_bug('Filter chain <strong>' . $filterName . '</strong> not found!');