Syntax errors

This commit is contained in:
nonmakina 2021-01-19 20:38:18 -06:00
parent adb4112564
commit caadfdff2e
2 changed files with 2 additions and 1 deletions

View file

@ -60,6 +60,7 @@
<span>{{ boardStat.recent_ips }}</span>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>

View file

@ -126,7 +126,7 @@
$unique_ips = $unique_query->fetchAll();
$boardStat['recent_ips'] = count($unique_ips);
foreach ( as $_k => $row) {
foreach ($unique_ips as $_k => $row) {
$unique[$row['ip']] = true;
}