]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/other_filter.php
Extension ext-surfbar continued:
[mailer.git] / inc / filter / other_filter.php
index 17fa7113c9a1c223b4c67840880c57f67acda788..029483e975e31e872749b4d5dcf533dbd4a2cb08 100644 (file)
@@ -41,12 +41,17 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Filter for debugging SQLs
-function FILTER_DISPLAY_DEBUG_SQL () {
+function FILTER_DISPLAY_DEBUG_SQL ($data) {
        // Shall we display SQL queries?
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
        if ((isAdmin()) && (isDisplayDebugSqlEnabled()) && (!isGetRequestParameterSet('frame')) && ($GLOBALS['header_sent'] == 2)) {
                // Then display it here
                displayDebugSqls();
        } // END - if
+
+       // Return data
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
+       return $data;
 }
 
 // [EOF]