From 0bb323911049e884e5c2129201ae0ebf5e88c10e Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sat, 16 Jan 2021 15:23:04 +0100 Subject: [PATCH] issue/activity: author footer below messages Dashboard styling for small citations. --- widget/issue/activity.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/widget/issue/activity.php b/widget/issue/activity.php index f986a53..f09cdc7 100644 --- a/widget/issue/activity.php +++ b/widget/issue/activity.php @@ -24,13 +24,15 @@ while ($row = $query->fetch()) { print ''; } print '
'; + printf("
%s
\n\t", $row->message); + print ''; if ($row->author and $rowuser = new User("profile/{$row->author}")) { printf('%s ', $rowuser->html); } printf('%s', showdate(preg_split('/\D/', $row->created)) ); - printf("\n\t
%s
", $row->message); + print "
"; print "
\n"; } -- 2.30.0