X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/20554c40a0151bb22476a04e225c0167f22f436a..159ee0f3d812c9681a00c37f6a2bcaf8a1de83bc:/issue/index.php diff --git a/issue/index.php b/issue/index.php index e7c69bb..82fa39e 100644 --- a/issue/index.php +++ b/issue/index.php @@ -3,7 +3,7 @@ global $User, $Db; require_once 'database.inc.php'; @list ($id, $title) = explode('/', ltrim($Args, '/')); -if ($id) { +if ($id and ctype_digit($id)) { $Article->title = "Issue #$id"; $Issue = $Db->query( @@ -16,7 +16,7 @@ if ($id) { $author = $Issue->author ? new User('profile/'.$Issue->author, FALSE) : NULL; printf('

%s%s %s

'."\n", 'Geplaatst', - $author ? " door {$author->name}" : '', + $author ? " door {$author->html}" : '', showdate(preg_split('/\D/', $Issue->created)) ); if ($Issue->assign) { @@ -37,12 +37,11 @@ if ($id) { } if ($_POST) { - $html = nl2br(htmlspecialchars($_POST['body'])); - $html = empty($html) ? NULL : "

$html

"; + require_once 'upload.inc.php'; $query = $Db->set('issues', [ 'page' => $Page, 'subject' => $_POST['subject'], - 'body' => $html, + 'body' => messagehtml($_POST['body']), 'author' => $User->login, ]); if (!$query->rowCount()) { @@ -51,22 +50,32 @@ if ($_POST) { $_POST = []; } -$sql = 'SELECT * FROM issues WHERE page = ?'; +$cols = "*, (SELECT count(*) FROM comments WHERE" + . " page=i.page||'/'||i.id AND message IS NOT NULL) AS replycount"; +$sql = "SELECT $cols FROM issues i WHERE page = ?"; if (isset($_GET['open'])) { $sql .= ' AND closed IS NULL'; } $sql .= ' ORDER BY closed IS NOT NULL, updated DESC'; $query = $Db->query($sql, [$Page]); +if ($id == 'feed') { + require 'issue/feed.inc.php'; +} + ob_start(); print '