X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Factive_functions.php;h=99718e51dce93c7ab2f6b1c55b8d962cac97fe94;hb=5b8d588fdbfa375fa859ca80a9b9e1735a13300e;hp=b7c1c49f378d58bb97e217b0a80ef9d5ac7dc93f;hpb=414570c5081d337bb6c28dcf521bd8bca02f69e7;p=mailer.git diff --git a/inc/libs/active_functions.php b/inc/libs/active_functions.php index b7c1c49f37..99718e51dc 100644 --- a/inc/libs/active_functions.php +++ b/inc/libs/active_functions.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer die active-Erweiterung * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -38,22 +38,22 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // 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 ((EXT_IS_ACTIVE('active')) && (EXT_IS_ACTIVE('online'))) { // Init content $content = array( 'menu' => "".getConfig('menu_blur_spacer').GUEST_ACTIVE_LINK."", - 'what' => "active" - ); + '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 + LOAD_TEMPLATE("guest_menu_bottom", false, $content); } // END - if }