View Tables in Descending Order

bkim

Member
I am having the most difficult time trying to find this option. When you first go to a table, it automatically orders by the primary ID in ascending order. Is there a way to make it order in descending order when first viewing the tables?
 

eugenio

Administrator
Staff member
There is no configuration option at the moment.
You could open index.php and replace
$order_type = "ASC";
with
$order_type = "DESC";

you could have multiple occurrences of $order_type = "ASC", replace all of them.
 

bkim

Member
Thanks for your help. I was going crazy trying to find all ASC in the business logic to see if that would change it.
 
Top