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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user