This commit is contained in:
nonmakina 2021-02-21 16:23:32 -06:00
parent 735a9a6249
commit 29433c989f

View File

@ -148,10 +148,10 @@
time()-$timespan) time()-$timespan)
) or error(db_error()); ) or error(db_error());
$uniqueIps = $unique_query->fetchAll(); $uniqueIps = $unique_query->fetchAll();
foreach ($unique_ips as $_k => $row) { foreach ($uniqueIps as $_k => $row) {
$markAsCounted[$row['ip']] = true; $markAsCounted[$row['ip']] = true;
} }
return count($unique_ips); return count($unique_ips);
} }