Quote:
Originally Posted by darkmage
I was wondering that since you have the categories ordered by their alphabetical order, could you tell me the line of code to change to make it so it orders the categories by their ID?
Thanks.
|
Look for the following (about 150+ lines in to local_links.php depending on version)
PHP Code:
function get_linkscat() {
global $DB_site, $linkscat, $linkscat_set;
if (!$linkscat_set) {
$asb = $DB_site->query("SELECT * FROM ".THIS_TABLE."linkscat ORDER BY catname");
Change catname to catid or catdate as you will.
Should this be a configuration option?