X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/159ee0f3d812c9681a00c37f6a2bcaf8a1de83bc..7c9537015a7361681323e5a5ce2f10d9c0ee42d3:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 82fa39e..62182ac 100644 --- a/issue/index.php +++ b/issue/index.php @@ -1,45 +1,51 @@ path, '/')); if ($id and ctype_digit($id)) { - $Article->title = "Issue #$id"; - + $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'); - $Article->title .= ': '.htmlspecialchars($Issue->subject); - print "

{$Article->title}

\n"; - $author = $Issue->author ? new User('profile/'.$Issue->author, FALSE) : NULL; - printf('

%s%s %s

'."\n", - 'Geplaatst', - $author ? " door {$author->html}" : '', - showdate(preg_split('/\D/', $Issue->created)) - ); + $replies = $Page->widget('reply'); # handle updates + + $Page->title .= ': '.htmlspecialchars($Issue->subject); + $Page->teaser = $Issue->body; + if ($Page->api) return; + $Page->body = $replies; # find image + + print "

{$Page->title}

\n"; + print '\n\n"; + + print '
'; print $Issue->body; - $Args = "/$id"; # minimal reference - print placeholder_include('reply'); + print $replies; + print "
\n"; 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, @@ -49,15 +55,17 @@ if ($_POST) { } $_POST = []; } +if ($Page->api) return; -$cols = "*, (SELECT count(*) FROM comments WHERE" - . " page=i.page||'/'||i.id AND message IS NOT NULL) AS replycount"; +$subsql = "SELECT count(*) FROM comments WHERE page=i.page||'/'||i.id"; +$cols = "*, ($subsql AND message IS NOT NULL) AS replycount"; +$cols .= ", ($subsql AND message ~ 'query($sql, [$Page]); +$query = $Db->query($sql, [$Page->handler]); if ($id == 'feed') { require 'issue/feed.inc.php'; @@ -66,18 +74,29 @@ if ($id == 'feed') { ob_start(); print '\n"; -$Place['issuelist'] = ob_get_clean(); +$Page->place['issuelist'] = ob_get_clean();