I'll fully release it in a future version, with the option to disable it, but this'll do for now:
Okay, to do it, open Links.php and find this line:
ADD AFTER
// Prevent errors
$last_a = "";
FIND
while($link_row = $db->fetch_assoc($link_result))
{
ADD AFTER
// START INDEXING
$firstletter = substr($link_row['LinkName'],0,1);
if($firstletter != $last_a)
{
echo "</ul>";
echo "<b style=\"margin-left:10px\">" . strtoupper($firstletter) . "</b>";
echo '<ul style="margin-left:25px">';
}
$last_a = $firstletter;
// END INDEXING
This should do it just fine Have fun