aboutsummaryrefslogtreecommitdiffstats
path: root/ui-shared.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c
index bc76a6e..959ed8b 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -673,7 +673,7 @@ const struct date_mode *cgit_date_mode(enum date_mode_type type)
673static void print_rel_date(time_t t, int tz, double value, 673static void print_rel_date(time_t t, int tz, double value,
674 const char *class, const char *suffix) 674 const char *class, const char *suffix)
675{ 675{
676 htmlf("<span class='%s' title='", class); 676 htmlf("<span class='%s' data-ut='%" PRIu64 "' title='", class, (uint64_t)t);
677 html_attr(show_date(t, tz, cgit_date_mode(DATE_ISO8601))); 677 html_attr(show_date(t, tz, cgit_date_mode(DATE_ISO8601)));
678 htmlf("'>%.0f %s</span>", value, suffix); 678 htmlf("'>%.0f %s</span>", value, suffix);
679} 679}