diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-16 22:37:00 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-16 22:37:00 +0000 |
commit | 8203c8bd6c099146591ad3391fee3c40578e2e6d (patch) | |
tree | 12a21bca24ba039e5aff2cfaa37b905f43a18937 /mod | |
parent | 0eb11397722ff6dcf9edfa22933993160f12ca1c (diff) | |
download | elgg-8203c8bd6c099146591ad3391fee3c40578e2e6d.tar.gz elgg-8203c8bd6c099146591ad3391fee3c40578e2e6d.tar.bz2 |
Registers contexts for each menu item. Refs #32
git-svn-id: https://code.elgg.org/elgg/trunk@938 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profile/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/start.php b/mod/profile/start.php index d76be446c..354abbd58 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -32,7 +32,7 @@ menu_item(elgg_echo('profile:yours'),$CONFIG->wwwroot . "pg/profile/" . $_SESSION['user']->username),
menu_item(elgg_echo('profile:edit'),$CONFIG->wwwroot."mod/profile/edit.php"),
menu_item(elgg_echo('profile:editicon'),$CONFIG->wwwroot."mod/profile/editicon.php"),
- ));
+ ),'profile');
}
// For now, we'll hard code the profile items as follows:
|