From 20ec3461dd8f0803092233d12c8f4c27cd9e697c Mon Sep 17 00:00:00 2001 From: Jochen Mandl Date: Mon, 25 Apr 2016 20:02:25 +0200 Subject: [PATCH] issues-408 forward email mit Uhrzeit --- lib/email/emails_controller_screen.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/email/emails_controller_screen.php b/lib/email/emails_controller_screen.php index 76eb8bd..1d53a1f 100644 --- a/lib/email/emails_controller_screen.php +++ b/lib/email/emails_controller_screen.php @@ -1010,7 +1010,7 @@ public function getEmailForm($p = []) $body = ' ' . pz_i18n::msg('email_original'); $body .= "\n" . pz_i18n::msg('email_from') . ': ' . $email->getFromEmail(); - $body .= "\n" . pz_i18n::msg('email_original_send') . ': ' . $email->getDate(); + $body .= "\n" . pz_i18n::msg('email_original_send') . ': ' . $email->getDateTime()->format(DateTime::RFC3339); $body .= "\n" . pz_i18n::msg('email_to') . ': ' . $email->getToEmails(); $body .= "\n" . pz_i18n::msg('email_cc') . ': ' . $email->getCcEmails(); $body .= "\n" . pz_i18n::msg('email_subject') . ': ' . $email->getSubject(); @@ -1029,7 +1029,7 @@ public function getEmailForm($p = []) $body = ' ' . pz_i18n::msg('email_original'); $body .= "\n" . pz_i18n::msg('email_to') . ': ' . $email->getFromEmail(); - $body .= "\n" . pz_i18n::msg('email_original_send') . ': ' . $email->getDate(); + $body .= "\n" . pz_i18n::msg('email_original_send') . ': ' . $email->getDateTime()->format(DateTime::RFC3339); $body .= "\n" . pz_i18n::msg('email_to') . ': ' . $email->getToEmails(); $body .= "\n" . pz_i18n::msg('email_cc') . ': ' . $email->getCcEmails(); $body .= "\n" . pz_i18n::msg('email_subject') . ': ' . $email->getSubject();