BUG 8831 Backslash ( \ ) appears before single quotes in Case NotesSOLVED

- Characters are not validated.
- Was added stripslashes () to validate notes and send email.
This commit is contained in:
Marco Antonio Nina
2012-07-31 11:50:55 -04:00
parent 0dff29d9be
commit 5444fac063

View File

@@ -89,6 +89,7 @@ class AppProxy extends HttpProxyController
$noteRecipientsList[] = $key;
}
$noteRecipients = implode(",", $noteRecipientsList);
$noteContent = stripslashes($noteContent);
$appNotes->sendNoteNotification($appUid, $usrUid, $noteContent, $noteRecipients);
}