Oh well, it will be easy just to wait until I can fix it my self
Thanks, the fix you provide is better that nothing

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.