Merge pull request #1247 from julceslauhub/master

BUG 10544 The text is not displayed when using the characters <> SOLVED
This commit is contained in:
julceslauhub
2013-01-29 10:07:51 -08:00

View File

@@ -64,7 +64,7 @@ class AppNotes extends BaseAppNotes
$oDataset->next();
while ($aRow = $oDataset->getRow()) {
$aRow['NOTE_CONTENT'] = stripslashes( $aRow['NOTE_CONTENT'] );
$aRow['NOTE_CONTENT'] = htmlentities(stripslashes( $aRow['NOTE_CONTENT'] ));
$response['notes'][] = $aRow;
$oDataset->next();
}