_filter_htmlcorrector
- Versions
- 6 – 7
_filter_htmlcorrector($text)
Scan input and make sure that all HTML tags are properly closed and nested.
Code
modules/filter/filter.module, line 1094
<?php
function _filter_htmlcorrector($text) {
return filter_dom_serialize(filter_dom_load($text));
}
?>Login or register to post comments 