Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Just one more… release candidate 1.0-RC-3


_ck_
Participant

@_ck_

Ipstenu, what you have done is disable all the security entirely on the allow images plugin.

Kind of defeats the purpose of the plugin which could then be accomplished with just two lines.

add_filter( 'bb_allowed_tags', 'allow_images_allowed_tags' );
function allow_images_allowed_tags( $tags ) {$tags['img'] = array('src' => array(), 'title' => array(), 'alt' => array()); return $tags;}

MDA really needs to update that one, it’s becoming ancient now.

Skip to toolbar