_filter_html_escape

7 filter.module _filter_html_escape($text)
8 filter.module _filter_html_escape($text)

Escapes all HTML tags, so they will be visible instead of being effective.

Related topics

2 string references to '_filter_html_escape'

File

modules/filter/filter.module, line 1679
Framework for handling filtering of content.

Code

function _filter_html_escape($text) {
  return trim(check_plain($text));
}
Login or register to post comments