Can I make the default search order DESC?

D

Debbie Sontag

Guest
Can the default search order be set to DESC so that the newest records are displayed first instead of the oldest?

I just can't find where that would be.
 
D

Debbie Sontag

Guest
Never mind ... Should have looked more closely before posting ... perhaps this will help someone else though ...

In form.php, lines 358 to 360 (or near), I made the declaration to set sort order to DESC:

if (!isset($order_type)){
$order_type = "DESC";
} // end if
 

gwp1971

Member
on version 4.2 this is now in the index.php page at lines 547

if (!isset($order_type)){
$order_type = "DESC";
$_SESSION['order_type_'.$table_name] = $order_type;
} // end if

 
Top