summaryrefslogtreecommitdiffstats
path: root/settings/Controller/PersonalSettingsController.php
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2017-06-22 18:15:33 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2017-06-23 12:38:06 +0200
commita596251d6b8b27ad5ea626d1939adab6866dfe61 (patch)
tree46bbb6cb972d9ee86e7022417152783e9b9f76b0 /settings/Controller/PersonalSettingsController.php
parentb7ce492c59364faacd55fc90eebf4ed0a1c26115 (diff)
downloadnextcloud-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/PersonalSettingsController.php')
-rw-r--r--settings/Controller/PersonalSettingsController.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/Controller/PersonalSettingsController.php b/settings/Controller/PersonalSettingsController.php
index 3ccef025a72..7e2d62961b7 100644
--- a/settings/Controller/PersonalSettingsController.php
+++ b/settings/Controller/PersonalSettingsController.php
@@ -57,7 +57,8 @@ class PersonalSettingsController extends Controller {
*/
public function index($section) {
$this->navigationManager->setActiveEntry('personal');
- return $this->getIndexResponse($section);
+ return $this->getIndexResponse('personal', $section);
+
}
/**