Merge pull request #421 from brayanpereyra/BUG-9511

BUG 9511 Does't save data with baskslash in pmtables SOLVED
This commit is contained in:
julceslauhub
2012-08-01 08:15:02 -07:00

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 {