Added space to imploding of email addresses in infolog email import to allow linebreaks for long email lists

This commit is contained in:
Andreas Stöckel 2010-06-28 14:45:58 +00:00
parent d6c19145db
commit b135848f33

View File

@ -1013,8 +1013,8 @@ class infolog_bo
$info = array(
'info_id' => 0,
'info_type' => $type,
'info_from' => implode(',',$name),
'info_addr' => implode(',',$email),
'info_from' => implode(', ',$name),
'info_addr' => implode(', ',$email),
'info_subject' => $_subject,
'info_des' => $_message,
'info_startdate' => $_date,