Quote:
Originally Posted by Developer
i need a simple version that is admin controlled and for each forum i add the prefix that i want with out moderator control or other things
|
Edit threadprefix.php, change:
Code:
if (!can_moderate($foruminfo['forumid']) OR $foruminfo['forumid'] == 0 OR !$foruminfo['allowprefix'])
{
print_no_permission();
}
to:
Code:
if ($vbulletin->userinfo['usergroupid'] != 6 OR $foruminfo['forumid'] == 0 OR !$foruminfo['allowprefix'])
{
print_no_permission();
}
And edit the forumdisplay template to show the manage prefixes link only for admins.