X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/3a4f1ae1a32baa3658d54c3dadf268bab01308a2..b9757db57858fdcff8af1a6566e299559e491b17:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 3f665db..e8a36d2 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 (!$User) return; + $Page->body = $replies; # find image - print "

{$Article->title}

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

{$Page->title}

\n"; + print '
\n\n"; print '
'; print $Issue->body; @@ -40,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, @@ -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();