fix for bug in email2infolog: date was not set

This commit is contained in:
Ralf Becker 2007-05-14 15:37:25 +00:00
parent 4921902293
commit 16f85bf1e4

View File

@ -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();