
05-14-2004, 06:49 AM
|
|
|
Join Date: Aug 2002
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by EvilLS1
You want to stop certian user groups from adding timeslip info but they can still see the timeslips page right?
If so, in profile.php find this:
Code:
if ($_REQUEST['do'] == 'edittimeslip')
{
Add this below it:
(change the x's in array(x,x,x) to the group IDs that you don't want to have access).
Code:
if (in_array($bbuserinfo['membergroupids'], array(x,x,x)))
{
print_no_permission();
}
|
Thats exactly what i want, thanks!
|