Syntax errors
This commit is contained in:
parent
c438ff9ab0
commit
ed2fd963e5
|
@ -60,6 +60,7 @@
|
||||||
<span>{{ boardStat.recent_ips }}</span>
|
<span>{{ boardStat.recent_ips }}</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -126,7 +126,7 @@
|
||||||
$unique_ips = $unique_query->fetchAll();
|
$unique_ips = $unique_query->fetchAll();
|
||||||
$boardStat['recent_ips'] = count($unique_ips);
|
$boardStat['recent_ips'] = count($unique_ips);
|
||||||
|
|
||||||
foreach ( as $_k => $row) {
|
foreach ($unique_ips as $_k => $row) {
|
||||||
$unique[$row['ip']] = true;
|
$unique[$row['ip']] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue