X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffilter%2Factive_filter.php;h=3a7a9a57be387b18511e5b2db1b96030351c7525;hp=2132e64b7ad3b0660e8bbca8dbab3abdb00cbbb7;hb=20741b93fd58620af677a7f1039ffd16ea6ec689;hpb=24dfd21baed6a9a112992bdabf7da96576012bc4 diff --git a/inc/filter/active_filter.php b/inc/filter/active_filter.php index 2132e64b7a..3a7a9a57be 100644 --- a/inc/filter/active_filter.php +++ b/inc/filter/active_filter.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -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 ($filterData) { // 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 $filterData; } // [EOF]