summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rw-r--r--settings/apps.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/settings/apps.php b/settings/apps.php
index 4f8eba159c2..b9ed2cac93a 100644
--- a/settings/apps.php
+++ b/settings/apps.php
@@ -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']);
}