- cgit_print_date(info->author_date, "%a, %d %b %Y %H:%M:%S %z%n");
- htmlf("Subject: %s\n\n%s", info->subject, info->msg);
+ cgit_print_date(info->author_date, "%a, %d %b %Y %H:%M:%S %z%n", ctx.cfg.local_time);
+ htmlf("Subject: %s\n\n", info->subject);
+ if (info->msg && *info->msg) {
+ htmlf("%s", info->msg);
+ if (info->msg[strlen(info->msg) - 1] != '\n')
+ html("\n");
+ }