MyBB Community Forums

Full Version: restiction for viewing a page for a group
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i make banlist page, but i i want only usergroup 4 and 7 can see this page
how to do it sir? Smile
assuming that you are using a php file for the ban list page, you can try php code like below
if (!in_array($mybb->user['usergroup'] , array(4,7))) error_no_permission();

see this response for a similar requirement for more details