summaryrefslogtreecommitdiffstats
path: root/apps/files/index.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-05-20 11:06:09 +0200
committerVincent Petry <pvince81@owncloud.com>2014-05-30 10:06:29 +0200
commitd21b8108c88b33dbef465c7afc07613ab6466751 (patch)
treeb6908f96d40d36231f1568cd68bec76f0281c12c /apps/files/index.php
parent89ff2857fc713d4ff5a635d87aef1a213d30d8e9 (diff)
downloadnextcloud-server-d21b8108c88b33dbef465c7afc07613ab6466751.tar.gz
nextcloud-server-d21b8108c88b33dbef465c7afc07613ab6466751.zip
Fixed navigation order
Diffstat (limited to 'apps/files/index.php')
-rw-r--r--apps/files/index.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index e24c535cb20..95ae7977ecc 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -74,7 +74,12 @@ if (OC_App::isEnabled('files_encryption')) {
$nav = new OCP\Template('files', 'appnavigation', '');
+function sortNavigationItems($item1, $item2) {
+ return $item1['order'] - $item2['order'];
+}
+
$navItems = \OCA\Files\App::getNavigationManager()->getAll();
+usort($navItems, 'sortNavigationItems');
$nav->assign('navigationItems', $navItems);
$contentItems = array();