PMCORE-529

This commit is contained in:
Andrea Adamczyk
2020-10-06 09:30:18 -04:00
committed by andreaadamczyk
parent 777b2f4444
commit cde43432f9
2 changed files with 335 additions and 5 deletions

View File

@@ -5870,7 +5870,6 @@ class Cases
}
$arrayAux1 = $tasks->getUsersOfTask($taskUid, 1);
foreach ($arrayAux1 as $arrayUser) {
$arrayTaskUser[] = $arrayUser['USR_UID'];
}
@@ -5893,7 +5892,7 @@ class Cases
if ($to == '') {
$to = $toAux;
} else {
$cc .= (($cc != '') ? ',' : '') . $toAux;
$to .= ',' . $toAux;
}
}
}
@@ -5914,7 +5913,7 @@ class Cases
$to = $toAux;
$sw = 0;
} else {
$cc = $cc . (($cc != null) ? "," : null) . $toAux;
$to .= ',' . $toAux;
}
}
$arrayResp ['to'] = $to;
@@ -5939,7 +5938,7 @@ class Cases
$to = $toAux;
$sw = 0;
} else {
$cc = $cc . (($cc != null) ? "," : null) . $toAux;
$to .= ',' . $toAux;
}
}
$arrayResp ['to'] = $to;