X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/3a4f1ae1a32baa3658d54c3dadf268bab01308a2..dc93b0f8e382f9f449051a1b0412ed5fafebf77b:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 3f665db..0c18142 100644 --- a/issue/index.php +++ b/issue/index.php @@ -1,24 +1,25 @@ path, '/')); if ($id and ctype_digit($id)) { - $Article->title = "Issue #$id"; - $Args = "/$id"; # minimal reference + $Page->title = "Issue #$id"; + $Page->link = $Page->handler . ($Page->path = "/$id"); # minimal reference $Issue = $Db->query( - 'SELECT * FROM issues WHERE page = ? AND id = ?', [$Page, $id] + 'SELECT * FROM issues WHERE page = ? AND id = ?', [$Page->handler, $id] )->fetch(); if (!$Issue) throw new Exception('Issuenummer niet gevonden'); - $replies = placeholder_include('reply'); # handle updates + $replies = $Page->widget('reply'); # handle updates - $Article->title .= ': '.htmlspecialchars($Issue->subject); - $Article->teaser = $Issue->body; - $Article->body = $replies; # find image + $Page->title .= ': '.htmlspecialchars($Issue->subject); + $Page->teaser = $Issue->body; + $Page->body = $replies; # find image + if ($Page->api) return; - print "

{$Article->title}

\n"; - print "
\n"; + print "

{$Page->title}

\n"; + print '
\n\n"; print '
'; print $Issue->body; @@ -41,10 +42,14 @@ if ($id and ctype_digit($id)) { 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, + 'page' => $Page->handler, 'subject' => $_POST['subject'], 'body' => messagehtml($_POST['body']), 'author' => $User->login, @@ -63,7 +68,7 @@ if (isset($_GET['open'])) { $sql .= ' AND closed IS NULL'; } $sql .= ' ORDER BY closed IS NOT NULL, updated DESC'; -$query = $Db->query($sql, [$Page]); +$query = $Db->query($sql, [$Page->handler]); if ($id == 'feed') { require 'issue/feed.inc.php'; @@ -74,7 +79,7 @@ print '\n"; -$Place['issuelist'] = ob_get_clean(); +$Page->place['issuelist'] = ob_get_clean();