snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit ded12dcf52834b8d7a5c807b2037398f01f6e4b2
parent 478cb2cf15324289884847412b61b193f51fb532
Author: default <nobody@localhost>
Date:   Thu, 15 Jun 2023 18:00:09 +0200

Fixed look of users without creationg date in the people page.

Diffstat:
Mhtml.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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);