diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-13 00:33:09 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-13 00:33:09 +0200 |
commit | b99ecb3c235436bbdf50952b502465ba440d57bc (patch) | |
tree | c64f0df72e11c66ee7a8b0367376700caf2763e0 | |
parent | a133e7970d766d9bb54da678174ef3dd53270357 (diff) | |
download | nextcloud-server-b99ecb3c235436bbdf50952b502465ba440d57bc.tar.gz nextcloud-server-b99ecb3c235436bbdf50952b502465ba440d57bc.zip |
move systemstags to sharign section, drop collaboration section
-rw-r--r-- | apps/systemtags/lib/Settings/Admin.php | 4 | ||||
-rw-r--r-- | lib/private/Settings/Manager.php | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/apps/systemtags/lib/Settings/Admin.php b/apps/systemtags/lib/Settings/Admin.php index ed72e17cf50..fbdec8741f7 100644 --- a/apps/systemtags/lib/Settings/Admin.php +++ b/apps/systemtags/lib/Settings/Admin.php @@ -39,7 +39,7 @@ class Admin implements ISettings { * @return string the section ID, e.g. 'sharing' */ public function getSection() { - return 'collaboration'; + return 'sharing'; } /** @@ -50,7 +50,7 @@ class Admin implements ISettings { * E.g.: 70 */ public function getPriority() { - return 30; + return 70; } } diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php index 4b1b5befb21..21400a9805a 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -262,7 +262,6 @@ class Manager implements IManager { $sections = [ 0 => [new Section('server', $this->l->t('Server settings'), 0)], 5 => [new Section('sharing', $this->l->t('Sharing'), 0)], - 15 => [new Section('collaboration', $this->l->t('Collaboration'), 0)], 45 => [new Section('encryption', $this->l->t('Encryption'), 0)], 90 => [new Section('logging', $this->l->t('Logging'), 0)], 98 => [new Section('additional', $this->l->t('Additional settings'), 0)], |