MyBB Community Forums

Full Version: Bans and birthdays
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I dont know why bans appear in birthdays list. Theres some way to fix it? I dont know maybe with a AND in the php file that controls it would be enough. How do I fix it? It's very annoying... i find no sence that bans appear in the birthday list.
Open ./index.php and find;
$bdayuser['username'] = format_name($bdayuser['username'], $bdayuser['usergroup'], $bdayuser['displaygroup']);
Now add the following code just after that;
if ($bdayuser['usergroup'] == 7)
{
$bdayuser['username'] = "";
}