I also added a check for any "isbannedgroup" groups, as they'll never show as logged in anyhow.
Before
PHP Code:
if (!$group['opentag'] && !$group['closetag']) {
continue;
}
After:
PHP Code:
if (!$group['opentag'] && !$group['closetag']) {
continue;
}
if ($group['genericoptions']>=32) {
continue;
}
I have a padlock icon on my banned users (grin), but I don't want the "Banned" item to show up on the legend.