From 16f85bf1e4319d78d3afdc169a28485caad716d7 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 14 May 2007 15:37:25 +0000 Subject: [PATCH] fix for bug in email2infolog: date was not set --- infolog/inc/class.uiinfolog.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infolog/inc/class.uiinfolog.inc.php b/infolog/inc/class.uiinfolog.inc.php index 91ed9df2e7..62aa8e11e3 100644 --- a/infolog/inc/class.uiinfolog.inc.php +++ b/infolog/inc/class.uiinfolog.inc.php @@ -1264,7 +1264,7 @@ class uiinfolog $bodyAppend = $bofelamimail->wordwrap($value,75,"\n"); $message .= $bodyAppend; } - } + } if (is_array($attachments)) { @@ -1288,7 +1288,7 @@ class uiinfolog $subject, $message, $attachments, - strtotime($headers->date) + strtotime($headers['DATE']) )); } $GLOBALS['egw']->common->egw_header();