diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/headers/_display_headers.html.ep | 2 | ||||
-rw-r--r-- | templates/webmail/readmail.html.ep | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/headers/_display_headers.html.ep b/templates/headers/_display_headers.html.ep index e7f9650..da04873 100644 --- a/templates/headers/_display_headers.html.ep +++ b/templates/headers/_display_headers.html.ep @@ -71,7 +71,7 @@ %= ucfirst($msg->{is_multipart} ? l('yes') : l('no')); </td> <td> - % my $date = parse_iso_date $msg->{date}; + % my $date = parse_iso_date $msg->{date_received}; %= join('/', $date->{mday}, $date->{month}, $date->{year}) . " $date->{hour}:$date->{min}"; </td> <td> diff --git a/templates/webmail/readmail.html.ep b/templates/webmail/readmail.html.ep index 79dbff7..8c2432a 100644 --- a/templates/webmail/readmail.html.ep +++ b/templates/webmail/readmail.html.ep @@ -18,7 +18,7 @@ %= $mail_fmt->('cc', $msg->{cc}) if !ref $msg->{cc} || @{ $msg->{cc} }; %= $mail_fmt->('bcc', $msg->{bcc}) if !ref $msg->{bcc} || @{ $msg->{cc} }; <dt> <%= uc l 'date' %> </dt> - <dd> <%= $msg->{date} %> </dd> + <dd> <%= $msg->{date_received} %> </dd> <dt> <%= uc l 'size' %> </dt> <dd> <%= print_sizes10 $msg->{size} %> </dd> <dt> <%= uc l 'content-type' %> </dt> |