Merge pull request #2186 from marcoAntonioNina/BUG-13636

BUG-13636: Error is thrown when adding a case note to a case which... SOLVED
This commit is contained in:
julceslauhub
2013-12-05 11:07:21 -08:00

View File

@@ -254,7 +254,9 @@ class AppNotes extends BaseAppNotes
$noteRecipientsList = array();
foreach ($p["array"] as $key => $userParticipated) {
$noteRecipientsList[] = $key;
if ($key != '') {
$noteRecipientsList[] = $key;
}
}
$noteRecipients = implode(",", $noteRecipientsList);