great work man gets better and better might wanna update your options file with this spent an hour sorting roster by groupid here how tofix that in the new showroster.php
Find:
Code:
$t = strtoupper($user[$groupsort]);
after add:
Code:
$t = strtoupper($user['usergroupid']);
when done the changes should look like this:
Code:
$t = strtoupper($user[$groupsort]);
$t = strtoupper($user['usergroupid']);
$u = strtoupper($user[$usersort]);
hope this helps
~Brian