X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/d780bb75d42fe6e8c12f5e7fc82b50f005b37e92..da2d6e5537e9fdcd6f424ea1cc8ab6ef8f45727e:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 6aebf8e..87b22a3 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->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; + if ($Page->api) return; + $Page->body = $replies; # find image - print "

{$Article->title}

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

{$Page->title}

\n"; + print '
\n\n"; print '
'; print $Issue->body; @@ -44,7 +45,7 @@ if ($id and ctype_digit($id)) { if ($_POST) { require_once 'upload.inc.php'; $query = $Db->set('issues', [ - 'page' => $Page, + 'page' => $Page->handler, 'subject' => $_POST['subject'], 'body' => messagehtml($_POST['body']), 'author' => $User->login, @@ -54,6 +55,7 @@ if ($_POST) { } $_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"; @@ -63,7 +65,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 +76,7 @@ print '\n"; -$Place['issuelist'] = ob_get_clean(); +$Page->place['issuelist'] = ob_get_clean();