MyBB Community Forums

Full Version: See mulit user bars?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So in ACP I set the groups right. But only 1 user bar shows. I want all of the user bars to show for each group he's in
need 1.6
It works in MyBB 1.6. Tested it out just now.

If you want to use language support for the additional user group images you will need to do a small enhancement:
Find
$aui = $getaui['image'];
replace with:
	if(!empty($mybb->user['language']))
	{
		$language = $mybb->user['language'];
	}
	else
	{
		$language = $mybb->settings['bblanguage'];
	}
	$aui = str_replace('{lang}', $language, $getaui['image']);

You need to do that twice.

For those who are more technical I've attached a patch.