_filter_html_escape
- Versions
- 7
_filter_html_escape($text)
Escapes all HTML tags, so they will be visible instead of being effective.
Code
modules/filter/filter.module, line 1207
<?php
function _filter_html_escape($text) {
return trim(check_plain($text));
}
?>Login or register to post comments 