diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 09:21:00 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 09:21:00 +0000 |
commit | ff0dc7e991e2ad262f6980a4e21f90130f417545 (patch) | |
tree | 7ae970a8f0e39f71a9c463f5a59fc6bd66369454 /mod | |
parent | ed196013255ba0a23258b956164c5c3ed927c4a9 (diff) | |
download | elgg-ff0dc7e991e2ad262f6980a4e21f90130f417545.tar.gz elgg-ff0dc7e991e2ad262f6980a4e21f90130f417545.tar.bz2 |
Admin links on profile pages and in user context menus appear at the bottom.
git-svn-id: https://code.elgg.org/elgg/trunk@1875 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/logbrowser/start.php | 2 | ||||
-rw-r--r-- | mod/profile/start.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/logbrowser/start.php b/mod/logbrowser/start.php index 40c486296..26c2db90e 100644 --- a/mod/logbrowser/start.php +++ b/mod/logbrowser/start.php @@ -26,7 +26,7 @@ // Extend context menu with admin logbrowsre link
if (isadminloggedin())
{
- extend_view('profile/menu/links','logbrowser/adminlinks');
+ extend_view('profile/menu/links','logbrowser/adminlinks',10000);
} }
diff --git a/mod/profile/start.php b/mod/profile/start.php index 5029a5618..b26abb93f 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -60,7 +60,7 @@ // Extend context menu with admin links
if (isadminloggedin())
{
- extend_view('profile/menu/links','profile/menu/adminlinks',0);
+ extend_view('profile/menu/links','profile/menu/adminlinks',10000);
}
}
|