X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/559ab5ecc4445c8477ecf62c9fc97efa412dd562..a8b9ef8c1c68fbb9c89db2d8c12dca38c15e2bfd:/ui-atom.c?ds=sidebyside
diff --git a/ui-atom.c b/ui-atom.c
index 11ea0c0..0bf2cf2 100644
--- a/ui-atom.c
+++ b/ui-atom.c
@@ -17,6 +17,11 @@ static void add_entry(struct commit *commit, const char *host)
char *hex;
char *mail, *t, *t2;
struct commitinfo *info;
+ struct date_mode mode = {
+ .type = DATE_STRFTIME,
+ .strftime_fmt = FMT_ATOMDATE,
+ .local = 0,
+ };
info = cgit_parse_commit(commit);
hex = oid_to_hex(&commit->object.oid);
@@ -25,7 +30,7 @@ static void add_entry(struct commit *commit, const char *host)
html_txt(info->subject);
html("\n");
html("");
- cgit_print_date(info->committer_date, FMT_ATOMDATE, 0);
+ html_txt(show_date(info->committer_date, 0, &mode));
html("\n");
html("\n");
if (info->author) {
@@ -50,7 +55,7 @@ static void add_entry(struct commit *commit, const char *host)
}
html("\n");
html("");
- cgit_print_date(info->author_date, FMT_ATOMDATE, 0);
+ html_txt(show_date(info->author_date, 0, &mode));
html("\n");
if (host) {
char *pageurl;