_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
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.