TYPO3 CMS  TYPO3_6-2
RemoveXssFilter.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Form\Filter;
3 
23 
33  public function filter($value) {
34  $value = stripslashes($value);
35  $value = html_entity_decode($value, ENT_QUOTES);
37  return $filteredValue;
38  }
39 
40 }