So your saying that this button works even in a non-html enabled page? Whoops, looks like I missed that. Although I still don't like to grant my members access to flash on every forum, because they abuse the use of it and the pages can get very laggy. So I would only enable this still for forums that I would enable HTML on. Actually, HTML can be a threat sometimes because of the issues I've heard about it, so if you still want to use flash but no HTML, then I have a small solution:
In my code above on
step 2, in this segment:
PHP Code:
if($foruminfo[allowhtml])
{
$flashenabled = true;
}
with the following:
PHP Code:
if($forumid == 1 || $forumid == 2 || and so on..)
{
$flashenabled = true;
}
This would allow you to specify certain forums to have flash, but those forums need not have HTML enabled.