]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/uberwach_filter.php
Extension ext-coupon continued, naming convention, many improvements:
[mailer.git] / inc / filter / uberwach_filter.php
index ec30e1a778d2dc0d6a307543c95ad389f76de5da..faa0fe165892b9165d8a15d16567d67bab5c0b41 100644 (file)
@@ -41,12 +41,17 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Filter for displaying uberwach snippet
-function FILTER_DISPLAY_UBERWACH_SNIPPET () {
+function FILTER_DISPLAY_UBERWACH_SNIPPET ($data) {
        // Shall we include the uberwach snippet?
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
        if ((!isGetRequestParameterSet('frame')) && (isExtensionActive('uberwach')) && (getModule() != 'admin') && ($GLOBALS['header_sent'] == 2)) {
                // Then display it here
                loadUberwachSnippet();
        } // END - if
+
+       // Return data
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
+       return $data;
 }
 
 // [EOF]