From: Roland Häder Date: Sat, 20 Sep 2008 20:13:27 +0000 (+0000) Subject: Display error fixed when active and online extensions are installed X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=690c48be1c6447146d98235a5dba39596ada7c6f;ds=sidebyside Display error fixed when active and online extensions are installed --- diff --git a/inc/databases.php b/inc/databases.php index c8d260cb4a..fc761f6aa6 100644 --- a/inc/databases.php +++ b/inc/databases.php @@ -113,7 +113,7 @@ define('USAGE_BASE', "usage"); define('SERVER_URL', "http://www.mxchange.org"); // This current patch level -define('CURR_SVN_REVISION', "370"); +define('CURR_SVN_REVISION', "371"); // Take a prime number which is long (if you know a longer one please try it out!) define('_PRIME', 591623); diff --git a/inc/modules/guest/action-online.php b/inc/modules/guest/action-online.php index b8a82c3573..07fbcec63b 100644 --- a/inc/modules/guest/action-online.php +++ b/inc/modules/guest/action-online.php @@ -62,9 +62,15 @@ define('ADMINS_ONLINE_CNT' , SQL_NUMROWS($result_admins)); LOAD_TEMPLATE("online_now"); if (EXT_IS_ACTIVE("active")) { + // Init content + $content = array( + 'menu' => "".$_CONFIG['menu_blur_spacer'].GUEST_ACTIVE_LINK."", + 'what' => "active" + ); + // Add link to "we were active today" page - LOAD_TEMPLATE("guest_menu_bottom", false, "".$_CONFIG['menu_blur_spacer'].GUEST_ACTIVE_LINK.""); -} + LOAD_TEMPLATE("guest_menu_bottom", false, $content); +} // END - if // ?>