More misc fixes and rewrites (sorry, lame description)
[mailer.git] / inc / libs / active_functions.php
index e690da7f8175096d77efe606c805a3ef247dbe01..99718e51dce93c7ab2f6b1c55b8d962cac97fe94 100644 (file)
 
 // 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' => "<a class=\"menu_blur\" href=\"{!URL!}/modules.php?module=index&amp;what=active\">".getConfig('menu_blur_spacer').GUEST_ACTIVE_LINK."</a>",
-                       '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
 }