Skip to content
Snippets Groups Projects
Commit 5bf7791b authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

Merge pull request #1396 from owncloud/apps_sorting

Sort internal apps above 3rdparty apps
parents 878cf9bd a224d80f
Branches
No related tags found
No related merge requests found
......@@ -36,6 +36,10 @@ function app_sort( $a, $b ) {
}
if ($a['internal'] != $b['internal']) {
return $b['internal'] - $a['internal'];
}
return strcmp($a['name'], $b['name']);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment