mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
quiten warning when missing entrys for (to/cc/bcc)
This commit is contained in:
parent
c892a3fcda
commit
fbdbfda46a
@ -1541,9 +1541,9 @@ class infolog_ui
|
||||
//_debug_array($preferences);
|
||||
//_debug_array($attachments);
|
||||
$body = self::createHeaderInfoSection(array('FROM'=>$_to_emailAddress['from'],
|
||||
'TO'=>implode(',',$_to_emailAddress['to']),
|
||||
'CC'=>implode(',',$_to_emailAddress['cc']),
|
||||
'BCC'=>implode(',',$_to_emailAddress['bcc']),
|
||||
'TO'=>(!empty($_to_emailAddress['to'])?implode(',',$_to_emailAddress['to']):null),
|
||||
'CC'=>(!empty($_to_emailAddress['cc'])?implode(',',$_to_emailAddress['cc']):null),
|
||||
'BCC'=>(!empty($_to_emailAddress['bcc'])?implode(',',$_to_emailAddress['bcc']):null),
|
||||
'SUBJECT'=>$_subject,
|
||||
'DATE'=>bofelamimail::_strtotime($_date))).strip_tags($_body);
|
||||
$this->edit($this->bo->import_mail(
|
||||
|
Loading…
Reference in New Issue
Block a user