diff options
author | deva <deva> | 2010-03-02 15:00:24 +0000 |
---|---|---|
committer | deva <deva> | 2010-03-02 15:00:24 +0000 |
commit | e10832ad013881909cf1a051bbecae732b9e4cad (patch) | |
tree | 3da7d38261097cc1e88efa532f36e8ea71911ef3 /forum/htdocs | |
parent | b26e4af55e0ebbab8d558e6062631b91b5ffa6be (diff) |
Add menu in the bottom, when in forum mode.
Diffstat (limited to 'forum/htdocs')
-rw-r--r-- | forum/htdocs/index.php | 10 |
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 { |