missing attributes after upgrade to 0.8.2.1
-
I no longer have element attributes such as href, title, rel, or cite for content posted by users. For example:
This is a <a href="http://www.link.com" title="a link">Link</a>
becomes:
<a>Link</a>
i figured this was something in bb-includes/formatting functions, but everything looks right to me:
function bb_allowed_tags() {
$tags = array(
'a' => array(
'href' => array(),
'title' => array(),
'rel' => array()),
'blockquote' => array('cite' => array()),
'br' => array(),
'code' => array(),
'pre' => array(),
'em' => array(),
'strong' => array(),
'ul' => array(),
'ol' => array(),
'li' => array()
);
return apply_filters( 'bb_allowed_tags', $tags );
}does anyone have any ideas?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.