X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/af5d5f4037aabc493afa60a5394ab3f8f6134917..05c560470887c86a30c82360d7be5caf0de1baa4:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 8b42d11..a4b1314 100644 --- a/issue/index.php +++ b/issue/index.php @@ -14,9 +14,8 @@ if ($id and ctype_digit($id)) { $replies = $Page->widget('reply'); # handle updates $Page->title .= ': '.htmlspecialchars($Issue->subject); - $Page->teaser = $Issue->body; - if ($Page->api) return; $Page->body = $replies; # find image + if ($Page->api) return; print "

{$Page->title}

\n"; print '\n\n"; print '
'; - print $Issue->body; print $replies; print "
\n"; return; } -if ($_POST) { +if ($Page->api) return; +if ($_POST and isset($_POST['subject'])) { require_once 'upload.inc.php'; + if (strlen($_POST['subject']) < 2) { + throw new Exception('Een minimaal onderwerp is verplicht om een issue aan te maken.'); + } $query = $Db->set('issues', [ 'page' => $Page->handler, 'subject' => $_POST['subject'], - 'body' => messagehtml($_POST['body']), + 'link' => preg_replace('/\b(?:de|het|een)\s+|\W+/', '-', strtolower($_POST['subject'])), 'author' => $User->login, ]); if (!$query->rowCount()) { throw new Exception('Issue niet opgeslagen.'); } + $row = $query->fetch(); + if (!$row->id) { + throw new Exception('Issue niet goed opgeslagen.'); + } + $query = $Db->set('comments', [ + 'page' => "{$Page->handler}/{$row->id}", + 'raw' => $_POST['body'], + 'message' => messagehtml($_POST['body']), + 'author' => $User->login, + ]); + if (!$query->rowCount()) { + throw new Exception('Issueinhoud niet opgeslagen.'); + } $_POST = []; } -if ($Page->api) return; $subsql = "SELECT count(*) FROM comments WHERE page=i.page||'/'||i.id"; -$cols = "*, ($subsql AND message IS NOT NULL) AS replycount"; +$cols = "*, ($subsql AND message IS NOT NULL) - 1 AS replycount"; $cols .= ", ($subsql AND message ~ '