zzfritz Posted November 20, 2002 Posted November 20, 2002 A trivial change in admin/whos_online.php will present the list in descending order, so you can quickly see who's been on line longest. Change the query string at line 67 from this $whos_online_query = tep_db_query("select customer_id, full_name, ip_address, time_entry, time_last_click, last_page_url, session_id from " . TABLE_WHOS_ONLINE); to this $whos_online_query = tep_db_query("select customer_id, full_name, ip_address, time_entry, time_last_click, last_page_url, session_id from " . TABLE_WHOS_ONLINE . " order by time_entry");
Ajeh Posted November 20, 2002 Posted November 20, 2002 Well ain't that the coolest ... :D Thank you kindly!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.