From 7285b6566f9910a2f8edca65e67b9570e8cf7b2a Mon Sep 17 00:00:00 2001 From: Brayan Osmar Pereyra Suxo Date: Wed, 1 Aug 2012 10:47:18 -0400 Subject: [PATCH] BUG 9511 Does't save data with baskslash in pmtables SOLVED - I removed function stripslashes, this function is add in json_decode --- workflow/engine/controllers/pmTablesProxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/controllers/pmTablesProxy.php b/workflow/engine/controllers/pmTablesProxy.php index c3d3863e3..e7fc2c037 100755 --- a/workflow/engine/controllers/pmTablesProxy.php +++ b/workflow/engine/controllers/pmTablesProxy.php @@ -470,7 +470,7 @@ class pmTablesProxy extends HttpProxyController if ($codification == 'base64') { $rows = unserialize(base64_decode($httpData->rows)); } else { - $rows = G::json_decode(stripslashes($httpData->rows)); + $rows = G::json_decode($httpData->rows); } try {