summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorGravatar grunfink2026-02-28 08:25:41 +0100
committerGravatar grunfink2026-02-28 08:25:41 +0100
commit34e7bc0e59cc80612f100a54f5df8bdacefea03d (patch)
treeae0f80b1cf23b0af9bc1eff7908edd69d2b9a702 /html.c
parentMerge pull request 'example file does not need to be executable (chmod -x)' (... (diff)
downloadsnac2-34e7bc0e59cc80612f100a54f5df8bdacefea03d.tar.gz
snac2-34e7bc0e59cc80612f100a54f5df8bdacefea03d.tar.xz
snac2-34e7bc0e59cc80612f100a54f5df8bdacefea03d.zip
Inserted a space between month name and number.
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 36d39c4..3a19e26 100644
--- a/html.c
+++ b/html.c
@@ -225,7 +225,7 @@ xs_str *html_date_label(snac *user, const char *date)
225 return xs_str_utctime(t, "%Y-%m-%d %H:%M"); 225 return xs_str_utctime(t, "%Y-%m-%d %H:%M");
226 } 226 }
227 227
228 xs_str *date = xs_str_utctime(t, "%b%d %H:%M"); 228 xs_str *date = xs_str_utctime(t, "%b %d %H:%M");
229 229
230 struct tm tm; 230 struct tm tm;
231 localtime_r(&t, &tm); 231 localtime_r(&t, &tm);