Quote:
Originally Posted by Colin F
You could try something like this:
in global.php, find:
Code:
// style specified in user profile
$styleid = $bbuserinfo['styleid'];
REPLACE WITH:
PHP Code:
if ($bbuserinfo['styleid'] == X AND $bbuserinfo['usergroupid'] != Y)
{
$styleid = $vboptions['styleid'];
}
else
{
// style specified in user profile
$styleid = $bbuserinfo['styleid'];
}
replace X with the styleid and Y with the usergroup that's allowed to view that style.
(untested)
|
I got a parse error with this code. All I want to do is give moderators 1 more style to choose. Any ideas?