Merge pull request #2053 from gproly/BUG-12932
BUG-12932 SOLVED perdida de texto con comillas dobles
This commit is contained in:
@@ -40,7 +40,11 @@ try {
|
|||||||
//$oJSON = new Services_JSON();
|
//$oJSON = new Services_JSON();
|
||||||
|
|
||||||
if (isset($_REQUEST['data'])) {
|
if (isset($_REQUEST['data'])) {
|
||||||
$oData = Bootstrap::json_decode(stripslashes($_REQUEST['data']));
|
if($_REQUEST['action']=="addText"||$_REQUEST['action']=="updateText") {
|
||||||
|
$oData = Bootstrap::json_decode($_REQUEST['data']);
|
||||||
|
} else {
|
||||||
|
$oData = Bootstrap::json_decode(stripslashes($_REQUEST['data']));
|
||||||
|
}
|
||||||
//$oData = $oJSON->decode( stripslashes( $_REQUEST['data'] ) );
|
//$oData = $oJSON->decode( stripslashes( $_REQUEST['data'] ) );
|
||||||
$sOutput = '';
|
$sOutput = '';
|
||||||
$sTask = '';
|
$sTask = '';
|
||||||
|
|||||||
Reference in New Issue
Block a user