2
Hi cosmodrum,
I don't find an option for this through module administration but searching the code here's what I've found:
In myalbum/include/draw_functions.php on line 202 in the function myalbum_get_sub_categories() the line is:
$crs = $xoopsDB->query( "SELECT cid, title, imgurl FROM $table_cat WHERE pid=$parent_id ORDER BY title") or die( "Error: Get Category." ) ;
that is a query to the DB. What comes is the ORDER BY option at the end - add 'DESC' (like 'ORDER BY title DESC') and it should work.