X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Ffilter%2Factive_filter.php;h=7a7c1b248b599944747cc80508091c68a65c4669;hb=964a3b539e335f6d70e7779630fd3d25fd38398d;hp=2132e64b7ad3b0660e8bbca8dbab3abdb00cbbb7;hpb=f7d1229840cdae4ba22fdf375265bca4fb4a2d32;p=mailer.git diff --git a/inc/filter/active_filter.php b/inc/filter/active_filter.php index 2132e64b7a..7a7c1b248b 100644 --- a/inc/filter/active_filter.php +++ b/inc/filter/active_filter.php @@ -41,8 +41,9 @@ if (!defined('__SECURITY')) { } // END - if // Filter for adding link to "active list" -function FILTER_ADD_LINK_ACTIVE_LIST () { +function FILTER_ADD_LINK_ACTIVE_LIST ($data) { // Is ext-active/online there? + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!'); if ((isExtensionActive('active')) && (isExtensionActive('online'))) { // Init fake-content because there is no `what`='active' in database $content = array( @@ -55,6 +56,10 @@ function FILTER_ADD_LINK_ACTIVE_LIST () { // Add link to "we were active today" page $GLOBALS['rows'] .= loadTemplate('guest_menu_bottom', true, $content); } // END - if + + // Return data + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!'); + return $data; } // [EOF]