In admin/modules/links change line 157 from:
|
Code:
|
$result2=sql_query("select cid, title, parentid from ".$prefix."_links_categories order by title", $dbi); |
to:
|
Code:
|
$result2=sql_query("select cid, title, parentid from ".$prefix."_links_categories order by title ASC", $dbi); |
You could also run a search and replace in that file, search for:
replace with:
|
Code:
|
order by title ASC" |