diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-04-09 21:49:03 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-05-03 08:58:24 +0200 |
commit | 8b0c6c6df12fb7c44f3e87f69737bb2a34752cac (patch) | |
tree | 3e4e83edd8b71b0ad3ab8b7246d0f2ba30bbe414 /lib/private/Settings | |
parent | 9a6b2d28fa4bb6f10a8568c37a5729ac00054561 (diff) | |
download | nextcloud-server-8b0c6c6df12fb7c44f3e87f69737bb2a34752cac.tar.gz nextcloud-server-8b0c6c6df12fb7c44f3e87f69737bb2a34752cac.zip |
Do not hide additional settings if there are only legacy forms
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/private/Settings')
-rw-r--r-- | lib/private/Settings/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php index 68f43a60c90..becc670c6f9 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -227,7 +227,7 @@ class Manager implements IManager { // built-in sections $sections = [ 0 => [new Section('overview', $this->l->t('Overview'), 0, $this->url->imagePath('settings', 'admin.svg'))], - 1 => [new Section('server', $this->l->t('Basic settings'), 0, $this->url->imagePath('settings', 'admin.svg'))], + 1 => [new Section('server', $this->l->t('Basic settings'), 0, $this->url->imagePath('core', 'actions/settings-dark.svg'))], 5 => [new Section('sharing', $this->l->t('Sharing'), 0, $this->url->imagePath('core', 'actions/share.svg'))], 10 => [new Section('security', $this->l->t('Security'), 0, $this->url->imagePath('core', 'actions/password.svg'))], 45 => [new Section('encryption', $this->l->t('Encryption'), 0, $this->url->imagePath('core', 'actions/password.svg'))], |