open admin/functions.php
find:
PHP Code:
// ###################### Start bbcodeparse #######################
function bbcodeparse($bbcode,$forumid=0,$allowsmilie=1) {
global $allowhtml,$allowbbcode,$allowbbimagecode,$allowsmilies;
if ($forumid == 0)
{
$dohtml=$allowhtml;
$dobbcode=$allowbbcode;
$dobbimagecode=$allowbbimagecode;
$dosmilies=$allowsmilies;
}
and change to:
PHP Code:
// ###################### Start bbcodeparse #######################
function bbcodeparse($bbcode,$forumid=0,$allowsmilie=1) {
global $allowhtml,$allowbbcode,$allowbbimagecode,$allowsmilies,$post;
if ($forumid == 0)
{
$dohtml=$allowhtml;
if($post[usergroupid] == 6) {
$dobbcode=1;
} else {
$dobbcode=0;
}
$dobbimagecode=$allowbbimagecode;
$dosmilies=$allowsmilies;
}
this will just allow admins to use bbcode