mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-23 06:19:09 +01:00
quiten warning when missing entrys for (to/cc/bcc)
This commit is contained in:
parent
a5a7fcbc66
commit
cb7d421f1d
@ -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