View Single Post
  #3 (permalink)  
Old 05-01-2003, 01:11 PM
gcheers gcheers is offline
Junior Member
 
Join Date: Apr 2003
Posts: 3
Won't this only work for the Admin area?
For the front end I have found a line (162) in
/modules/Web_Links/index.php

Code:
    	
$result2=sql_query("select cid, title, parentid from ".$prefix."_links_categories order by parentid,title", $dbi);
    while(list($cid2, $ctitle2, $parentid2) = sql_fetch_row($result2, $dbi)) {
    		if ($parentid2!=0) $ctitle2=getparent($parentid2,$ctitle2);
    	    echo "<option value=\"$cid2\">$ctitle2</option>";
changing
Code:
parentid,title
to
Code:
parentid, title ASC
doesn't appear to work?
Reply With Quote