Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2018-08-17 15:07:25 +0300
committerBjoern Schiessle <bjoern@schiessle.org>2018-08-17 15:07:25 +0300
commit4eaa89fe459b7c92ee9b7838602798ba2e0d63bc (patch)
tree9c92bc395d2cbdd1a751ba123ceed389bf4ea535 /lib
parentd59b75dba6f241b00ca3fd76ab02d3d612dc332b (diff)
keep the server setting at the top, right after "overview" and "basic settings"
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/Settings/AdminSection.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Settings/AdminSection.php b/lib/Settings/AdminSection.php
index 5f61267..eb74dfa 100644
--- a/lib/Settings/AdminSection.php
+++ b/lib/Settings/AdminSection.php
@@ -63,10 +63,10 @@ class AdminSection implements IIconSection {
* the settings navigation. The sections are arranged in ascending order of
* the priority values. It is required to return a value between 0 and 99.
*
- * keep the server setting at the top, right after "server settings"
+ * keep the server setting at the top, right after "overview" and "basic settings"
*/
public function getPriority() {
- return 0;
+ return 1;
}
/**