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()) {
printf("%10s || ", $f['uri']);
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'];
printf("%8d | ", $c);