From 5b6434b2be99eca06ee87bc2f8fc843b12be3c73 Mon Sep 17 00:00:00 2001 From: Ronald Quenta Date: Thu, 5 Nov 2015 15:18:58 -0400 Subject: [PATCH] =?UTF-8?q?PM-3956=20(Mobile=20Backend)=20El=20escapeado?= =?UTF-8?q?=20de=20los=20s=C3=ADmbolos=20especiales=20no=20se=20esta=20eje?= =?UTF-8?q?cutando?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- workflow/engine/src/ProcessMaker/BusinessModel/Light.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Light.php b/workflow/engine/src/ProcessMaker/BusinessModel/Light.php index f49c385d4..edf2f986d 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Light.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Light.php @@ -66,7 +66,7 @@ class Light foreach ($processList[$key] as $keyChild => $processInfoChild) { $webEntryEventStart = $webEntryEvent->getWebEntryEvents($processInfoChild['pro_uid']); if(empty($webEntryEventStart)){ - $tempTreeChild['text'] = htmlentities($keyChild, ENT_QUOTES, 'UTF-8'); //ellipsis ( $keyChild, 50 ); + $tempTreeChild['text'] = $keyChild; //ellipsis ( $keyChild, 50 ); $tempTreeChild['processId'] = $processInfoChild['pro_uid']; $tempTreeChild['taskId'] = $processInfoChild['uid']; $forms = $task->getSteps($processInfoChild['uid']);