aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Settings/Manager.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-03-19 22:24:16 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2019-03-20 15:17:31 +0100
commit575b3f9ff8cb06e949a2acbb136a6e0d14731eab (patch)
treee8767df86a2243116ef7e9c3f027c805878d622a /lib/private/Settings/Manager.php
parent1c8779dc6e34a89ea9181b3cb252101e457c1543 (diff)
downloadnextcloud-server-575b3f9ff8cb06e949a2acbb136a6e0d14731eab.tar.gz
nextcloud-server-575b3f9ff8cb06e949a2acbb136a6e0d14731eab.zip
Revert "Where is your data?"
Diffstat (limited to 'lib/private/Settings/Manager.php')
-rw-r--r--lib/private/Settings/Manager.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php
index 3f72557d8ec..42ec16e223b 100644
--- a/lib/private/Settings/Manager.php
+++ b/lib/private/Settings/Manager.php
@@ -192,7 +192,6 @@ class Manager implements IManager {
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'))],
- 30 => [new Section('theming', $this->l->t('Theming'), 0, $this->url->imagePath('settings', 'theming-dark.svg'))],
50 => [new Section('groupware', $this->l->t('Groupware'), 0, $this->url->imagePath('core', 'places/contacts.svg'))],
98 => [new Section('additional', $this->l->t('Additional settings'), 0, $this->url->imagePath('core', 'actions/settings-dark.svg'))],
];
@@ -238,10 +237,6 @@ class Manager implements IManager {
$form = $this->container->query(Admin\Security::class);
$forms[$form->getPriority()] = [$form];
}
- if ($section === 'theming') {
- $form = $this->container->query(Theming\ServerInfo::class);
- $forms[$form->getPriority()] = [$form];
- }
if ($section === 'sharing') {
/** @var ISettings $form */
$form = $this->container->query(Admin\Sharing::class);