Skip to content
Snippets Groups Projects
Commit 413d5351 authored by kaushik p's avatar kaushik p
Browse files

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

#Fixes::158177825::kaushik::Forward email with attached documents in mail manager results 500 error fixed
parent 567ccfad
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