issue: inline ticket body like replies
authorMischa POSLAWSKY <perl@shiar.org>
Thu, 7 Nov 2019 16:49:58 +0000 (17:49 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Sat, 9 Nov 2019 06:08:13 +0000 (07:08 +0100)
issue/index.php

index 419156f70c6ed0909b171223755d1caeb21eaa69..e7c69bb49de71088c48f8927dc2b3035685659a9 100644 (file)
@@ -13,7 +13,6 @@ if ($id) {
 
        $Article->title .= ': '.htmlspecialchars($Issue->subject);
        print "<h2>{$Article->title}</h2>\n";
-       print $Issue->body;
        $author = $Issue->author ? new User('profile/'.$Issue->author, FALSE) : NULL;
        printf('<p><em>%s</em>%s <small class=date>%s</small></p>'."\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;