BUG 9511 Does't save data with baskslash in pmtables SOLVED

- I removed function stripslashes, this function is add in json_decode
This commit is contained in:
Brayan Osmar Pereyra Suxo
2012-08-01 10:47:18 -04:00
parent 7e7bbde301
commit 7285b6566f

View File

@@ -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 {