diff options
Diffstat (limited to '')
-rw-r--r-- | ui-shared.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index bbb277a..36fcb21 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -644,7 +644,11 @@ void cgit_print_age(time_t t, time_t max_relative, const char *format) secs = 0; if (secs > max_relative && max_relative >= 0) { + html("<span title='"); + html_attr(fmt_date(t, FMT_LONGDATE, ctx.cfg.local_time)); + html("'>"); cgit_print_date(t, format, ctx.cfg.local_time); + html("</span>"); return; } |