diff options
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 { |