Quote:
Originally Posted by Abe1
In the changes I said to make in the postbits,
Find:
PHP Code:
$bbuserinfo['usergroupid'] == '6'
Replace with:
PHP Code:
$bbuserinfo['usergroupid'] == '6' OR $bbuserinfo['usergroupid'] == '7'
|
i wanted to let only admins, mods and supermods give awards so i did this:
PHP Code:
<if condition="$bbuserinfo[usergroupid]=='6' OR $bbuserinfo[usergroupid]=='7' OR $bbuserinfo[usergroupid]=='5'">
but it won't let them add awards. says "user has no permission" page when they click on add award.
they can see the "add award", they just can't perform the function because they don't have permission.
suggestions?