aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/apps.php5
-rw-r--r--version.inc2
2 files changed, 5 insertions, 2 deletions
diff --git a/include/apps.php b/include/apps.php
index bf5b292d0..9eb54af00 100644
--- a/include/apps.php
+++ b/include/apps.php
@@ -31,11 +31,14 @@ function get_system_apps() {
}
}
}
-
+ usort($ret,'app_name_compare');
return $ret;
}
+function app_name_compare($a,$b) {
+ return strcmp($a['name'],$b['name']);
+}
function parse_app_description($f) {
$ret = array();
diff --git a/version.inc b/version.inc
index 859a49ba3..21f2b8fa8 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2014-05-21.682
+2014-05-22.683