X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Factive_functions.php;h=b3b3726e5aef9b5e38aa33fc5f46727f594f2a85;hb=7c15ca79161bf475e958810a5b585bce869a2af9;hp=99718e51dce93c7ab2f6b1c55b8d962cac97fe94;hpb=5071030af40e69ca4284642f44758964e18f5be8;p=mailer.git diff --git a/inc/libs/active_functions.php b/inc/libs/active_functions.php index 99718e51dc..b3b3726e5a 100644 --- a/inc/libs/active_functions.php +++ b/inc/libs/active_functions.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,24 +38,23 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); -} + die(); +} // END - if // Filter for adding link to "active list" function FILTER_ADD_LINK_ACTIVE_LIST () { // Are the extensions online and active there? - if ((EXT_IS_ACTIVE('active')) && (EXT_IS_ACTIVE('online'))) { + if (isExtensionActive('online')) { // Init content $content = array( - 'menu' => "".getConfig('menu_blur_spacer').GUEST_ACTIVE_LINK."", + 'menu' => "".getConfig('menu_blur_spacer').getMessage('GUEST_ACTIVE_LINK')."", 'what' => 'active' - ); + ); - // Add link to "we were active today" page - LOAD_TEMPLATE("guest_menu_bottom", false, $content); + // Add link to "we were active today" page + $GLOBALS['rows'] .= loadTemplate('guest_menu_bottom', true, $content); } // END - if } -// +// [EOF] ?>