Latest Orders in Admin

Does anyone know how to change the default value of “Latest Orders” in the admin from 5 to something else? Like 20? I'd like to see more orders at one time as soon as I login to my admin.



Thank you for any suggestions.

controllers/admin/index.php



$latest_orders = db_get_hash_array(
"SELECT order_id, timestamp, firstname, lastname, total, user_id, status "
. "FROM ?:orders WHERE 1 ?p ORDER BY timestamp DESC LIMIT 5",
'order_id', $condition . fn_get_company_condition('?:orders.company_id')
);




change the 5 to the value you would like



John

Exactly what I was looking for. Many thanks John.

Thank you very much. Needed it too.