| 6 filter.module | _filter_htmlcorrector($text) |
| 7 filter.module | _filter_htmlcorrector($text) |
| 8 filter.module | _filter_htmlcorrector($text) |
Scan input and make sure that all HTML tags are properly closed and nested.
Related topics
3 calls to _filter_htmlcorrector()
1 string reference to '_filter_htmlcorrector'
File
- modules/
filter/ filter.module, line 1594 - Framework for handling filtering of content.
Code
function _filter_htmlcorrector($text) {
return filter_dom_serialize(filter_dom_load($text));
}
Login or register to post comments