1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-09-24 03:28:22 +02:00

stats.php: fix typo

This commit is contained in:
czaks 2014-01-31 23:39:50 +01:00
parent 57ae4e1e9b
commit fc178c2724

View File

@ -22,7 +22,7 @@ $q = query("SELECT uri FROM ``boards``");
while ($f = $q->fetch()) { while ($f = $q->fetch()) {
printf("%10s || ", $f['uri']); printf("%10s || ", $f['uri']);
foreach ($variants as list($term, $time)) { foreach ($variants as list($term, $time)) {
$qq = query(sprintf("SELECT COUNT(*) as count FROM ``posts_%s`` WHERE time > %d", $f['uri'], time()-$time); $qq = query(sprintf("SELECT COUNT(*) as count FROM ``posts_%s`` WHERE time > %d", $f['uri'], time()-$time));
$c = $qq->fetch()['count']; $c = $qq->fetch()['count'];
printf("%8d | ", $c); printf("%8d | ", $c);