Display error fixed when active and online extensions are installed
[mailer.git] / inc / modules / guest / action-online.php
index e8df9e777748f31878233bc4d8ef0e5e4eda2e5f..07fbcec63bad705e2be00944b7b8359f4ed0ae81 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
-{
+if (!defined('__SECURITY')) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-}
- elseif (!EXT_IS_ACTIVE("online"))
-{
+} elseif (!EXT_IS_ACTIVE("online")) {
        // Just skip this extension
        return;
 }
@@ -49,15 +46,11 @@ $result_admins  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_ad
 
 // Total visitors online
 $total      = SQL_NUMROWS($result_guests) + SQL_NUMROWS($result_members) + SQL_NUMROWS($result_admins);
-if ($_CONFIG['mad_counter'] < $total)
-{
+if ($_CONFIG['mad_count'] < $total) {
        // Update counter
-       $_CONFIG['mad_counter'] = $total;
-       $_CONFIG['last_mad']    = time();
-       $result_mad = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET mad_timestamp=%d, mad_count='%s' WHERE config=0 LIMIT 1",
-        array($_CONFIG['last_mad'], $_CONFIG['mad_counter']), __FILE__, __LINE__);
-
-       // Destroy cache
+       UPDATE_CONFIG(array("mad_timestamp", "mad_count"), array(time(), $total));
+       $_CONFIG['mad_count'] = $total;
+       $_CONFIG['last_mad']  = time();
 }
 
 // Put all values in constants for the template
@@ -68,11 +61,16 @@ define('ADMINS_ONLINE_CNT' , SQL_NUMROWS($result_admins));
 // Output table
 LOAD_TEMPLATE("online_now");
 
-if (EXT_IS_ACTIVE("active"))
-{
+if (EXT_IS_ACTIVE("active")) {
+       // Init content
+       $content = array(
+               'menu' => "<A class=\"menu_blur\" href=\"".URL."/modules.php?module=index&amp;what=active\">".$_CONFIG['menu_blur_spacer'].GUEST_ACTIVE_LINK."</A>",
+               'what' => "active"
+       );
+
        // Add link to "we were active today" page
-       LOAD_TEMPLATE("guest_menu_bottom", false, "<A class=\"menu_blur\" href=\"".URL."/modules.php?module=index&amp;what=active\">".$_CONFIG['menu_blur_spacer'].GUEST_ACTIVE_LINK."</A>");
-}
+       LOAD_TEMPLATE("guest_menu_bottom", false, $content);
+} // END - if
 
 //
 ?>