Forgotten AS in mod/admin patch
This commit is contained in:
parent
8b3f623d29
commit
d076b39b64
|
@ -290,8 +290,8 @@ function admin_page_federation(App $a) {
|
||||||
foreach ($platforms as $p) {
|
foreach ($platforms as $p) {
|
||||||
// get a total count for the platform, the name and version of the
|
// get a total count for the platform, the name and version of the
|
||||||
// highest version and the protocol tpe
|
// highest version and the protocol tpe
|
||||||
$c = qu('SELECT COUNT(*) AS `total`, ANY_VALUE(`platform`),
|
$c = qu('SELECT COUNT(*) AS `total`, ANY_VALUE(`platform`) AS `platform`,
|
||||||
ANY_VALUE(`network`), MAX(`version`) FROM `gserver`
|
ANY_VALUE(`network`) AS `network`, MAX(`version`) AS `version` FROM `gserver`
|
||||||
WHERE `platform` LIKE "%s" AND `last_contact` >= `last_failure`
|
WHERE `platform` LIKE "%s" AND `last_contact` >= `last_failure`
|
||||||
ORDER BY `version` ASC;', $p);
|
ORDER BY `version` ASC;', $p);
|
||||||
$total = $total + $c[0]['total'];
|
$total = $total + $c[0]['total'];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user