X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffilter%2Fpolitician_stop_filter.php;h=56ed51f16700e8f519f2f396d96f58da63903de2;hp=8a66346a2d934674dcf469f191a4e7ee7ccbd9b6;hb=964a3b539e335f6d70e7779630fd3d25fd38398d;hpb=f7d1229840cdae4ba22fdf375265bca4fb4a2d32;ds=sidebyside diff --git a/inc/filter/politician_stop_filter.php b/inc/filter/politician_stop_filter.php index 8a66346a2d..56ed51f167 100644 --- a/inc/filter/politician_stop_filter.php +++ b/inc/filter/politician_stop_filter.php @@ -41,12 +41,17 @@ if (!defined('__SECURITY')) { } // END - if // Filter for displaying politician_stop snippet -function FILTER_DISPLAY_POLITICIAN_STOP_SNIPPET () { +function FILTER_DISPLAY_POLITICIAN_STOP_SNIPPET ($data) { // Shall we include the politician_stop snippet? + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!'); if ((!isGetRequestParameterSet('frame')) && (isExtensionActive('politician_stop')) && (getModule() != 'admin') && ($GLOBALS['header_sent'] == 2)) { // Then display it here loadPoliticianStopSnippet(); } // END - if + + // Return data + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!'); + return $data; } // [EOF]