1 common.inc _filter_xss_allowed_tags()

List of the default tags allowed by filter_xss().

Related topics

File

core/includes/common.inc, line 1861
Common functions that many Backdrop modules will need to reference.

Code

function _filter_xss_allowed_tags() {
  return array('a', 'em', 'strong', 'cite', 'blockquote', 'code', 'ul', 'ol', 'li', 'dl', 'dt', 'dd');
}