diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-06-22 18:15:33 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-06-23 12:38:06 +0200 |
commit | a596251d6b8b27ad5ea626d1939adab6866dfe61 (patch) | |
tree | 46bbb6cb972d9ee86e7022417152783e9b9f76b0 /settings/Controller/AdminSettingsController.php | |
parent | b7ce492c59364faacd55fc90eebf4ed0a1c26115 (diff) | |
download | nextcloud-server-a596251d6b8b27ad5ea626d1939adab6866dfe61.tar.gz nextcloud-server-a596251d6b8b27ad5ea626d1939adab6866dfe61.zip |
avoid marking two sections as active when they have the same name
… in both personal and admin.
Diffstat (limited to 'settings/Controller/AdminSettingsController.php')
-rw-r--r-- | settings/Controller/AdminSettingsController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/Controller/AdminSettingsController.php b/settings/Controller/AdminSettingsController.php index 834534f95ac..33d9cb2c2a3 100644 --- a/settings/Controller/AdminSettingsController.php +++ b/settings/Controller/AdminSettingsController.php @@ -65,7 +65,7 @@ class AdminSettingsController extends Controller { */ public function index($section) { $this->navigationManager->setActiveEntry('admin'); - return $this->getIndexResponse($section); + return $this->getIndexResponse('admin', $section); } /** |