X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/0f7747af6751b55fb297a4e90f8c2ba6232bd0b9..v4.5-23-gb9757db578:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 8a3d907..e8a36d2 100644 --- a/issue/index.php +++ b/issue/index.php @@ -1,21 +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); - print "

{$Article->title}

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

{$Page->title}

\n"; + print '
\n\n"; print '
'; print $Issue->body; @@ -37,11 +41,12 @@ if ($id and ctype_digit($id)) { print "
\n"; return; } +elseif (!$User) return; 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 +59,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'; @@ -69,19 +74,29 @@ if ($id == 'feed') { ob_start(); print '\n"; -$Place['issuelist'] = ob_get_clean(); +$Page->place['issuelist'] = ob_get_clean();