]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/politician_stop_filter.php
Several code cleanups:
[mailer.git] / inc / filter / politician_stop_filter.php
index 56ed51f16700e8f519f2f396d96f58da63903de2..c657bdba49c01f7f8fc154c95a0c39b62f270707 100644 (file)
@@ -41,7 +41,7 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Filter for displaying politician_stop snippet
-function FILTER_DISPLAY_POLITICIAN_STOP_SNIPPET ($data) {
+function FILTER_DISPLAY_POLITICIAN_STOP_SNIPPET ($filterData) {
        // Shall we include the politician_stop snippet?
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
        if ((!isGetRequestParameterSet('frame')) && (isExtensionActive('politician_stop')) && (getModule() != 'admin') && ($GLOBALS['header_sent'] == 2)) {
@@ -51,7 +51,7 @@ function FILTER_DISPLAY_POLITICIAN_STOP_SNIPPET ($data) {
 
        // Return data
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
-       return $data;
+       return $filterData;
 }
 
 // [EOF]