Sort internal apps above 3rdparty apps

This commit is contained in:
Robin Appelman 2013-01-31 17:49:58 +01:00
parent b471177439
commit a224d80f4d
1 changed files with 4 additions and 0 deletions

View File

@ -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']);
}