X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Factive_functions.php;h=99718e51dce93c7ab2f6b1c55b8d962cac97fe94;hp=e690da7f8175096d77efe606c805a3ef247dbe01;hb=f928ad2bed60fa256d0641eaf6d2c027a2944688;hpb=fb7120ffa230b62b54895bcf95952e1cf30f8594 diff --git a/inc/libs/active_functions.php b/inc/libs/active_functions.php index e690da7f81..99718e51dc 100644 --- a/inc/libs/active_functions.php +++ b/inc/libs/active_functions.php @@ -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 }