X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/a257ef8b6e9d435938803471bd655be9d9734370..2d7b510a9d33a552b024e1db00212658f21afce6:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 35a1116..55ea273 100644 --- a/issue/index.php +++ b/issue/index.php @@ -10,10 +10,32 @@ if ($id and ctype_digit($id)) { 'SELECT * FROM issues WHERE page = ? AND id = ?', [$Page->handler, $id] )->fetch(); if (!$Issue) throw new Exception('Issuenummer niet gevonden'); + $Page->title .= ': '.htmlspecialchars($Issue->subject); - $replies = $Page->widget('reply'); # handle updates + if ($title and ctype_digit($title)) { + $Page->title = "Antwoord op {$Page->title}"; + $Page->handler = $Page->link; + $Page->link .= "/$title"; + $row = $Db->query( + 'SELECT * FROM comments WHERE id = ?', [$title] + )->fetch(); + if (!$row) throw new Exception('Antwoordnummer niet gevonden'); - $Page->title .= ': '.htmlspecialchars($Issue->subject); + print "

{$Page->title}

\n"; + printf('
', + $Page->handler + ); + printf(''."\n", 'id', $row->id); + printf(''."\n", + 'reply', + htmlspecialchars($row->raw) + ); + print ''."\n"; + print "
\n"; + return; + } + + $replies = $Page->widget('reply'); # handle updates $Page->body = $replies; # find image if ($Page->api) return; @@ -83,6 +105,12 @@ if ($id == 'feed') { } ob_start(); +$stats = $Db->query( + "SELECT count(*) AS total, count(closed) AS closed FROM issues" +)->fetch(); +printf("

%d lopende zaken, %s opgelost

\n", + $stats->total - $stats->closed, $stats->closed +); print '