In memberlist.php find:
Code:
if ($what=="topposters") {
$orderby="posts";
$direction="DESC";
}
Above it add:
Code:
if ($what=="username") {
$orderby="username";
$direction="ASC";
}
Find:
Code:
if ($orderby=="" or ($orderby!="username" and $orderby!="posts" and $orderby!="joindate" and $orderby!="lastpost")) {
$what = 'username';
$orderby="username";
}
Replace it with:
Code:
if ($orderby=="" or ($orderby!="username" and $orderby!="posts" and $orderby!="joindate" and $orderby!="lastpost")) {
$what = 'topposters';
$orderby="posts";
$direction="DESC";
}
In your memberlist template find:
Code:
<td bgcolor="{secondaltcolor}"><smallfont><a href="memberlist.php?s=$session[sessionhash]"><b>List Alphabetically</b></a></smallfont></td>
Replace it with:
Code:
<td bgcolor="{secondaltcolor}"><smallfont><a href="memberlist.php?s=$session[sessionhash]&what=username"><b>List Alphabetically</b></a></smallfont></td>