Note: The following is not a bugfix nor a major change to the mod's operation. Just a minor modification that made comparing listings easier for me.
I was trying to compare two sites and found that the listing is ordered by the FIFO (first in , first out) method that really made it difficult for these trifocals of mine.
So... I got the YOUR_ADMIN/mod_list.php file out and added an ORDER BY to the query on line 66:
becomesCode:$pages_query_raw = " SELECT * FROM " . TABLE_ADMIN_PAGES;That way, the listings are arranged close to the same as the menu items in the admin.Code:$pages_query_raw = " SELECT * FROM " . TABLE_ADMIN_PAGES . " ORDER BY menu_key ASC ";
Makes it a little easier to compare.


Reply With Quote
