sort by app name and not by apd filename

This commit is contained in:
friendica 2014-05-22 02:13:33 -07:00
parent ae1acf1726
commit 6f7fb7a2ac
2 changed files with 5 additions and 2 deletions

View File

@ -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();

View File

@ -1 +1 @@
2014-05-21.682
2014-05-22.683