From 20554c40a0151bb22476a04e225c0167f22f436a Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 7 Nov 2019 17:49:58 +0100 Subject: [PATCH] issue: inline ticket body like replies --- issue/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/issue/index.php b/issue/index.php index 419156f..e7c69bb 100644 --- a/issue/index.php +++ b/issue/index.php @@ -13,7 +13,6 @@ if ($id) { $Article->title .= ': '.htmlspecialchars($Issue->subject); print "

{$Article->title}

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

%s%s %s

'."\n", 'Geplaatst', @@ -31,6 +30,7 @@ if ($id) { showdate(preg_split('/\D/', $Issue->closed)) ); } + print $Issue->body; $Args = "/$id"; # minimal reference print placeholder_include('reply'); return; -- 2.30.0