Procházet zdrojové kódy

Inserted a space between month name and number.

grunfink před 5 měsíci
rodič
revize
34e7bc0e59
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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");
             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;
         struct tm tm;
         localtime_r(&t, &tm);
         localtime_r(&t, &tm);