Skip to content
Snippets Groups Projects
Commit a224d80f authored by Robin Appelman's avatar Robin Appelman
Browse files

Sort internal apps above 3rdparty apps

parent b4711774
No related branches found
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.
Finish editing this message first!
Please register or to comment