diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-07 18:18:09 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-07 18:18:09 +0200 |
commit | 367b248bc0ed2609d538de4f1a2e198f7d0c7d6a (patch) | |
tree | 782b522062146271b2e5fd31be27572f63e5ed25 /lib | |
parent | 057d7aa108f9b24c12b97f5f78008eb17a6d3bee (diff) | |
download | nextcloud-server-367b248bc0ed2609d538de4f1a2e198f7d0c7d6a.tar.gz nextcloud-server-367b248bc0ed2609d538de4f1a2e198f7d0c7d6a.zip |
show 'More apps' link to app administration directly in app navigation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/app.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/app.php b/lib/app.php index 2437896157a..5fa650044f3 100644 --- a/lib/app.php +++ b/lib/app.php @@ -401,15 +401,7 @@ class OC_App{ // if the user is an admin if(OC_User::isAdminUser(OC_User::getUser())) { - // admin apps menu - $settings[] = array( - "id" => "core_apps", - "order" => 3, - "href" => OC_Helper::linkToRoute( "settings_apps" ).'?installed', - "name" => $l->t("Apps"), - "icon" => OC_Helper::imagePath( "settings", "apps.svg" ) - ); - + // admin settings $settings[]=array( "id" => "admin", "order" => 1000, |