mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Merge pull request #4720 from annando/fix-sorting
Fix the version sorting in the federation statistics
This commit is contained in:
commit
08fd6734ae
1 changed files with 15 additions and 2 deletions
|
@ -635,8 +635,21 @@ function admin_page_federation(App $a)
|
|||
$v = $newVv;
|
||||
}
|
||||
|
||||
foreach ($v as $key => $vv)
|
||||
$v[$key]["version"] = trim(strip_tags($vv["version"]));
|
||||
// Assure that the versions are sorted correctly
|
||||
$v2 = [];
|
||||
$versions = [];
|
||||
foreach ($v as $vv) {
|
||||
$version = trim(strip_tags($vv["version"]));
|
||||
$v2[$version] = $vv;
|
||||
$versions[] = $version;
|
||||
}
|
||||
|
||||
usort($versions, 'version_compare');
|
||||
|
||||
$v = [];
|
||||
foreach ($versions as $version) {
|
||||
$v[] = $v2[$version];
|
||||
}
|
||||
|
||||
// the 3rd array item is needed for the JavaScript graphs as JS does
|
||||
// not like some characters in the names of variables...
|
||||
|
|
Loading…
Reference in a new issue