Changes count for sum

This commit is contained in:
nonmakina 2021-01-19 21:18:58 -06:00
parent 662e488943
commit 02ed0c11a9
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@
}
$stats['recent_ips'] = count($unique);
$stats['pph'] = count(array_column($stats['boards'], 'pph'));
$stats['pph'] = array_sum(array_column($stats['boards'], 'pph'));
return $stats;
}