Quote:
Originally Posted by CyberRanger
Do you mean your file listing is by date added? I don't think the categories even have a date added field.
If you want to change the default order for how the files are listed, in downloads.php around line 291 -
FIND:
PHP Code:
if ($sortfield == '') { $sortfield = 'date'; }
CHANGE TO:
PHP Code:
if ($sortfield == '') { $sortfield = 'name'; }
|
Thanks for the quick reply. That works perfectly. And yeah, my file listing was by date added.