9
I think it can be done much easier.
Open the index.php...approx. line 93 you'll see:
$result = $xoopsDB->query("SELECT l.lid, l.cid, l.title, l.url, l.logourl, l.status, l.date, l.hits, l.rating, l.votes, l.comments, t.description FROM ".$xoopsDB->prefix("mylinks_links")." l, ".$xoopsDB->prefix("mylinks_text")." t where l.status>0 and l.lid=t.lid ORDER BY date DESC",
As you can see in the last line the ORDER is done by DATE. You'll need to change this into title.
Next you have to open up include/functions.php
Aprox. line 49 you'll see
//Reusable Link Sorting Functions
with a bunch op sort options
By default you'll see
default:
$orderby = "date DESC";
break;
This you have to change into title
Upload, update the module and it should be allright.
Grtz., Shine