If you turn on html allowed in a section from what I remember it opens that section up to all groups to use html I might be wrong and cant checked this now to confirm it so you might need it coded. Maybe someone else can confirm this. Maybe a plugin has been made already try a search see what comes up
not sure if this will work for your version
Try this for the bbcode_parse plugin
PHP Code:
global $post; $perms =& $post['permissions']; if (!$perms) { $perms = fetch_permissions(0, $post['userid'], $post); } // Was this post made by an allowed Usergroup member? if ($perms['allowhtmlpermissions'] & $this->registry->bf_ugp_allowhtmlpermissions['canposthtml']) { // This is an allowed post so parse HTML. $dohtml = '1'; }
You would be best to not install any plugins that allow html to be used or allow any groups to use html on your site even if they are admins and you trust them its not just because of the security problems with html but if someone makes a mistake in the code of html when making a post it can cause big problems for your site