diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-01 18:53:51 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-01 18:53:51 +0000 |
commit | d0614e9115a57eccac6319d08d2fcafcf71bbc1a (patch) | |
tree | 585d330bcb5f486eb21c8ed61acaa3b60a4a56d3 /mod | |
parent | 8b4ce1421c9f2ce554677c2141e93045b7cc27f0 (diff) | |
download | elgg-d0614e9115a57eccac6319d08d2fcafcf71bbc1a.tar.gz elgg-d0614e9115a57eccac6319d08d2fcafcf71bbc1a.tar.bz2 |
Closes #112
git-svn-id: https://code.elgg.org/elgg/trunk@1263 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profile/start.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mod/profile/start.php b/mod/profile/start.php index 0cd8f2100..5f0eaabd2 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -59,7 +59,12 @@ // Add Javascript reference to the page header
extend_view('metatags','profile/metatags');
extend_view('css','profile/css');
-
+ + // Extend context menu with admin links + if (isadminloggedin()) + { + extend_view('profile/menu/links','profile/menu/adminlinks'); + }
}
/**
|