Inserted a space between month name and number.

This commit is contained in:
grunfink
2026-02-28 08:25:41 +01:00
parent 31a9f98d59
commit 34e7bc0e59
+1 -1
View File
@@ -225,7 +225,7 @@ xs_str *html_date_label(snac *user, const char *date)
return xs_str_utctime(t, "%Y-%m-%d %H:%M");
}
xs_str *date = xs_str_utctime(t, "%b%d %H:%M");
xs_str *date = xs_str_utctime(t, "%b %d %H:%M");
struct tm tm;
localtime_r(&t, &tm);