MyBB Community Forums

Full Version: Code to limit content by GID?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a code i can use on a custom php page to limit it so only certain usergroups can view it?
	// Allowed groups
	$groups = array(3,4,8);
	if(!in_array($mybb->user['usergroup'],$groups))
		error_no_permission();
Thank you very much sir!
You may want to affect additional groups:
http://community.mybb.com/thread-124348-...#pid898782