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:
@@ -470,7 +470,7 @@ class pmTablesProxy extends HttpProxyController
|
|||||||
if ($codification == 'base64') {
|
if ($codification == 'base64') {
|
||||||
$rows = unserialize(base64_decode($httpData->rows));
|
$rows = unserialize(base64_decode($httpData->rows));
|
||||||
} else {
|
} else {
|
||||||
$rows = G::json_decode(stripslashes($httpData->rows));
|
$rows = G::json_decode($httpData->rows);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user