Quote:
Originally Posted by cerulean
How can I change the sort so it isnt by username but by say Field11?
|
Please remember to click installed.
Right now it is by group title and then username, so I'm assuming you want to keep the group and then do field11 in place of username.
Open the showroster.php.
Find:
Code:
$u = strtoupper($user['username']);
Replace with:
Code:
$u = strtoupper($user['field11']);
That's it.