summaryrefslogtreecommitdiff
path: root/forum/htdocs/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'forum/htdocs/index.php')
-rw-r--r--forum/htdocs/index.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/forum/htdocs/index.php b/forum/htdocs/index.php
index 7e372c7..c4e0570 100644
--- a/forum/htdocs/index.php
+++ b/forum/htdocs/index.php
@@ -40,12 +40,13 @@ include_once($UTIL_DIR . "/clientinfo.php");
<?php if($mode == "editor") {?> <script language="javascript" src="lib.js" type="text/javascript"></script><?php } ?>
</head>
<body>
- <div class="menu">
+ <div id="menu_top" 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>
+ <a href="?mode=tasks">Tasks</a>
<?php if($current_user->uid == 0) {?> <a href="?mode=diagnostics">Diagnostics</a><?php } ?>
</div>
<?php
@@ -64,6 +65,10 @@ if($current_user) {
include_once($UTIL_DIR. "/profile.php");
break;
+ case "tasks":
+ include_once($UTIL_DIR. "/tasks.php");
+ break;
+
case "calendar":
include_once($UTIL_DIR. "/calendar.php");
break;
@@ -92,12 +97,13 @@ if($current_user) {
default:
include_once($UTIL_DIR. "/view.php");
?>
- <div class="menu">
+ <div id="menu_bottom" 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>
+ <a href="?mode=tasks">Tasks</a>
<?php if($current_user->uid == 0) {?> <a href="?mode=diagnostics">Diagnostics</a><?php } ?>
</div>
<?php