View Single Post
  #1  
Old 12-21-2005, 02:31 AM
  B00MER's Avatar 
B00MER B00MER is offline
 

X-Guru
  
Join Date: Sep 2002
Location: Keller, TX (Cart-Lab.com)
Posts: 3,165
 

Default New Orders First in Admin->Orders

Simple mod that will make the latest orders appear at the top of the orders list within the admin. Currently in 4.0.x orders are listed in Descending order based off the orderid, listing the oldest orders first instead of showing the latest orders at the top of the list:

edit include/orders.php and find:
Code:
$direction = ($data["sort_direction"] ? "DESC" : "ASC");

and change to:
Code:
$direction = ($data["sort_direction"] ? "ASC" : "DESC");
__________________
Cart-Lab - 100+ Social Bookmarks for X-Cart.
Reply With Quote