diff options
author | deva <deva> | 2008-10-26 12:31:40 +0000 |
---|---|---|
committer | deva <deva> | 2008-10-26 12:31:40 +0000 |
commit | b25d356c95196d407a7631f47ccdaeaed972b964 (patch) | |
tree | d23f299d9072fb8d8614ea443174f7eadde61052 | |
parent | 4bc99c18ecbbb7bb7d0fac4592fcc63e3c568798 (diff) |
Missed the index.php changes...
-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; |