diff options
-rw-r--r-- | forum/htdocs/index.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/forum/htdocs/index.php b/forum/htdocs/index.php index aa3be9c..163537c 100644 --- a/forum/htdocs/index.php +++ b/forum/htdocs/index.php @@ -41,6 +41,7 @@ include_once($UTIL_DIR . "/clientinfo.php"); <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 @@ -67,6 +68,10 @@ if($current_user) { include_once($UTIL_DIR. "/calendar.php"); break; + case "addressbook": + include_once($UTIL_DIR. "/addressbook.php"); + break; + case "editor": include_once($UTIL_DIR. "/editor.php"); break; |