* msg2pdf.c: show date in the default for the current locale

This commit is contained in:
djcb 2012-04-22 11:33:25 +03:00
parent 6321db9129
commit 607de43ae9
1 changed files with 2 additions and 1 deletions

View File

@ -194,7 +194,8 @@ convert_to_pdf (MuMsg *msg, GError **err)
add_header (gstr, "To", mu_msg_get_to (msg));
add_header (gstr, "Cc", mu_msg_get_cc (msg));
add_header (gstr, "Subject", mu_msg_get_subject (msg));
add_header (gstr, "Date", mu_date_display_s (mu_msg_get_date(msg)));
add_header (gstr, "Date", mu_date_str_s
("%c", mu_msg_get_date(msg)));
gstr = g_string_append (gstr, "<hr>\n");