Sfoglia il codice sorgente

Inserted a space between month name and number.

grunfink 5 mesi fa
parent
commit
34e7bc0e59
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      html.c

+ 1 - 1
html.c

@@ -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);