MyBB Hacks

Full Version: [Edit] Specific forum banning.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Oh well, it will be easy just to wait until I can fix it my self Tongue

Thanks, the fix you provide is better that nothing Smile
Hmmm strange. Finaly this do all the magic:

PHP Code:
if($mybb->input['action'] != "specificbanuser" || is_moderator() != true)
	{
		return;
	}
	
	else if($mybb->input['do'] == "specificbanuser" || is_moderator($mybb->input['fid']) != true)
	{
		error('Sorry, you have no permission to ban here!');
	}


Have fun!

Yes, that did it, thanks.
Pages: 1 2
Reference URL's