BUG 10544 The text is not displayed when using the characters <> SOLVED

- Missing validation for tags
- Add validation for tags
This commit is contained in:
Julio Cesar Laura
2013-01-29 14:09:35 -04:00
parent c13f2d5d12
commit 3effbff8d7

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();
}