Skip to content
Snippets Groups Projects
Commit 33247e1a authored by Apparao G's avatar Apparao G
Browse files

#Fixes::158177825::kaushik::Forward email with attached documents in mail...

parents 0d1a78ca 413d5351
No related branches found
No related tags found
No related merge requests found
......@@ -429,6 +429,9 @@ class Vtiger_ComposeEmail_View extends Vtiger_Footer_View {
$CC = Zend_Json::decode(html_entity_decode($recordModel->get('ccmail')));
$BCC = Zend_Json::decode(html_entity_decode($recordModel->get('bccmail')));
// Under Condition CC & BCC fields are empty ..
$CC = is_array($CC) ? $CC : array();
$BCC = is_array($BCC) ? $BCC : array();
$parentIds = explode('|',$recordModel->get('parent_id'));
$toMailInfo = $toMailNamesList = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment