count only version numbers starting with "numbers / dot or dash / numbers" in federation statistics

This commit is contained in:
Jens Tautenhahn 2016-11-09 21:48:36 +01:00
parent 12dd657868
commit 7b5c5c0fa2
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ function admin_page_federation(&$a) {
// what versions for that platform do we know at all?
// again only the active nodes
$v = qu('SELECT COUNT(*) AS `total`, `version` FROM `gserver`
WHERE `last_contact` > `last_failure` AND `platform` LIKE "%s" AND `version` != ""
WHERE `last_contact` > `last_failure` AND `platform` LIKE "%s" AND `version` RLIKE "^[[:digit:]]+[-.][[:digit:]]+"
GROUP BY `version`
ORDER BY `version`;', $p);