You are here

function fapi_validation_filter_html_entities in Form API Validation 7.2

Same name and namespace in other branches
  1. 8 src/fapi_filters/fapi_filters.inc \fapi_validation_filter_html_entities()
1 string reference to 'fapi_validation_filter_html_entities'
fapi_validation_fapi_validation_filters in ./fapi_validation.module
Implementation of hook_fapi_validation_filters

File

./fapi_validation.module, line 400

Code

function fapi_validation_filter_html_entities($value) {
  return htmlentities(html_entity_decode($value));
}