Changes count for sum

This commit is contained in:
nonmakina 2021-01-19 21:18:58 -06:00
parent fabbd15c86
commit 6cc047100a

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;
}