| Versions | |
|---|---|
| 7 | _field_filter_xss_allowed_tags() |
List of tags allowed by field_filter_xss().
drupal/
<?php
function _field_filter_xss_allowed_tags() {
return array('a', 'b', 'big', 'code', 'del', 'em', 'i', 'ins', 'pre', 'q', 'small', 'span', 'strong', 'sub', 'sup', 'tt', 'ol', 'ul', 'li', 'p', 'br', 'img');
}
?>