]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix ordering of user menu entries 1105/head
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Sat, 27 Aug 2016 20:35:02 +0000 (22:35 +0200)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Sat, 27 Aug 2016 20:42:08 +0000 (22:42 +0200)
lib/private/legacy/app.php

index 955173fe17678fb3218bfb46385e0980093a137b..0593f440eb0061f632a91ab1890e961b08e8a4a8 100644 (file)
@@ -443,7 +443,7 @@ class OC_App {
                        $settings = array(
                                array(
                                        "id" => "help",
-                                       "order" => 1000,
+                                       "order" => 4,
                                        "href" => $urlGenerator->linkToRoute('settings_help'),
                                        "name" => $l->t("Help"),
                                        "icon" => $urlGenerator->imagePath("settings", "help.svg")
@@ -472,7 +472,7 @@ class OC_App {
                                // admin users menu
                                $settings[] = array(
                                        "id" => "core_users",
-                                       "order" => 2,
+                                       "order" => 3,
                                        "href" => $urlGenerator->linkToRoute('settings_users'),
                                        "name" => $l->t("Users"),
                                        "icon" => $urlGenerator->imagePath("settings", "users.svg")
@@ -484,7 +484,7 @@ class OC_App {
                                // admin settings
                                $settings[] = array(
                                        "id" => "admin",
-                                       "order" => 1000,
+                                       "order" => 2,
                                        "href" => $urlGenerator->linkToRoute('settings.AdminSettings.index'),
                                        "name" => $l->t("Admin"),
                                        "icon" => $urlGenerator->imagePath("settings", "admin.svg")