I did a few changes. First, in the template, I used
HTML Code:
<td class="thead" colspan="2">
instead of
HTML Code:
<td class="tcat" colspan="2">
It looks a lot better that way. Also, I changed to plugin code to save the query. (Feel free to use this, Amy.)
PHP Code:
// Get all usergroups that have style changes.
foreach ($vbulletin->usergroupcache AS $group)
{
if (!$group['opentag'] AND !$group['closetag']) {
continue;
}
if (!isset($legend))
{
$legend = $group['opentag'] . $group['title'] . $group['closetag'];
}
else
{
$legend .= " | " . $group['opentag'] . $group['title'] . $group['closetag'];
}
}
I would attach the plugin file, but xml attachments aren't allowed anymore.
Good job, Amy.