summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeva <deva>2010-03-02 15:00:24 +0000
committerdeva <deva>2010-03-02 15:00:24 +0000
commite10832ad013881909cf1a051bbecae732b9e4cad (patch)
tree3da7d38261097cc1e88efa532f36e8ea71911ef3
parentb26e4af55e0ebbab8d558e6062631b91b5ffa6be (diff)
Add menu in the bottom, when in forum mode.
-rw-r--r--forum/htdocs/index.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/forum/htdocs/index.php b/forum/htdocs/index.php
index 23b9d36..7e372c7 100644
--- a/forum/htdocs/index.php
+++ b/forum/htdocs/index.php
@@ -91,6 +91,16 @@ if($current_user) {
case "view":
default:
include_once($UTIL_DIR. "/view.php");
+?>
+ <div class="menu">
+ <a href="?mode=forum">Forum</a>
+ <a href="?mode=filehandler">Filehandler</a>
+ <a href="?mode=calendar">Calendar</a>
+ <a href="?mode=addressbook">Addressbook</a>
+ <a href="?mode=profile">Profile</a>
+<?php if($current_user->uid == 0) {?> <a href="?mode=diagnostics">Diagnostics</a><?php } ?>
+ </div>
+<?php
break;
}
} else {