X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/1bbddc858b16f392d9ca3475e9f162f914c56c9d..7983570288ed2798470a552ec04f64aa646b664a:/issue/index.php diff --git a/issue/index.php b/issue/index.php index f5dead2..181d5b7 100644 --- a/issue/index.php +++ b/issue/index.php @@ -1,21 +1,24 @@ 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); - print "

{$Article->title}

\n"; - print "
\n"; + $Page->title .= ': '.htmlspecialchars($Issue->subject); + $Page->teaser = $Issue->body; + $Page->body = $replies; # find image + + print "

{$Page->title}

\n"; + print '
\n\n"; print '
'; print $Issue->body; @@ -41,7 +44,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,13 +57,13 @@ if ($_POST) { $subsql = "SELECT count(*) FROM comments WHERE page=i.page||'/'||i.id"; $cols = "*, ($subsql AND message IS NOT NULL) AS replycount"; -$cols .= ", ($subsql AND message ~ 'img') AS imagecount"; +$cols .= ", ($subsql AND message ~ 'query($sql, [$Page]); +$query = $Db->query($sql, [$Page->handler]); if ($id == 'feed') { require 'issue/feed.inc.php'; @@ -71,7 +74,7 @@ print '