allow bcc in header print (may be set on outgoing mails)

This commit is contained in:
Klaus Leithoff 2010-09-20 14:33:53 +00:00
parent d11c7f5e25
commit 416b482a5a

View File

@ -1662,6 +1662,7 @@ class infolog_ui
if ($header['SENDER']) $headdata .= lang('sender').': '.$header['SENDER']."\n";
if ($header['TO']) $headdata .= lang('to').': '.$header['TO']."\n";
if ($header['CC']) $headdata .= lang('cc').': '.$header['CC']."\n";
if ($header['BCC']) $headdata .= lang('bcc').': '.$header['BCC']."\n";
if ($header['DATE']) $headdata .= lang('date').': '.$header['DATE']."\n";
if ($header['PRIORITY'] && $header['PRIORITY'] != 'normal') $headdata .= lang('priority').': '.$header['PRIORITY']."\n";
if ($header['IMPORTANCE'] && $header['IMPORTANCE'] !='normal') $headdata .= lang('importance').': '.$header['IMPORTANCE']."\n";