This is a nice mod. I like that it does everything automatically. If you use HTML you need to edit that every time you make a change. Having said that, I much rather have it use the User Title instead of the group title. If I had the know how, I would make an admincp thing for this.
For now, you can use the Plugin Manager in admincp to edit the code and achieve this effect.
Original code:
Code:
if (!isset($legend))
{
$legend = $group['opentag'] . $group['title'] . $group['closetag'];
}
else
{
$legend .= " | " . $group['opentag'] . $group['title'] . $group['closetag'];
}
}
Changed code:
Code:
if (!isset($legend))
{
$legend = $group['opentag'] . $group['usertitle'] . $group['closetag'];
}
else
{
$legend .= " | " . $group['opentag'] . $group['usertitle'] . $group['closetag'];
}
}