summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-06-15 18:00:09 +0200
committerdefault <nobody@localhost>2023-06-15 18:00:09 +0200
commitded12dcf52834b8d7a5c807b2037398f01f6e4b2 (patch)
treebace43a4dc06fa68e7ae9a890fc06fca4662d69c /html.c
parent478cb2cf15324289884847412b61b193f51fb532 (diff)
Fixed look of users without creationg date in the people page.
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c
index b580faf..892a08c 100644
--- a/html.c
+++ b/html.c
@@ -121,7 +121,7 @@ xs_str *html_actor_icon(xs_str *os, char *actor,
s = xs_str_cat(s, " <span title=\"bot\">&#129302;</span>");
if (xs_is_null(date)) {
- s = xs_str_cat(s, "<br>\n&nbsp;\n");
+ s = xs_str_cat(s, "\n&nbsp;\n");
}
else {
xs *date_label = xs_crop_i(xs_dup(date), 0, 10);