2011-01-15, 11:26 PM
2011-01-15, 11:28 PM
2011-01-15, 11:33 PM
need 1.6
2011-01-16, 12:41 AM
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
You need to do that twice.
For those who are more technical I've attached a patch.
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.