]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/active_filter.php
www is out-dated
[mailer.git] / inc / filter / active_filter.php
index 2132e64b7ad3b0660e8bbca8dbab3abdb00cbbb7..3a7a9a57be387b18511e5b2db1b96030351c7525 100644 (file)
@@ -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]