From 5444fac0636b3cf14f280445211a483946d24a37 Mon Sep 17 00:00:00 2001 From: Marco Antonio Nina Date: Tue, 31 Jul 2012 11:50:55 -0400 Subject: [PATCH] BUG 8831 Backslash ( \ ) appears before single quotes in Case NotesSOLVED - Characters are not validated. - Was added stripslashes () to validate notes and send email. --- workflow/engine/controllers/appProxy.php | 1 + 1 file changed, 1 insertion(+) diff --git a/workflow/engine/controllers/appProxy.php b/workflow/engine/controllers/appProxy.php index 1d063b43c..43b7aa5f8 100644 --- a/workflow/engine/controllers/appProxy.php +++ b/workflow/engine/controllers/appProxy.php @@ -89,6 +89,7 @@ class AppProxy extends HttpProxyController $noteRecipientsList[] = $key; } $noteRecipients = implode(",", $noteRecipientsList); + $noteContent = stripslashes($noteContent); $appNotes->sendNoteNotification($appUid, $usrUid, $noteContent, $noteRecipients); }