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:
Code:
    $pages_query_raw = " SELECT * FROM " . TABLE_ADMIN_PAGES;
becomes
Code:
    $pages_query_raw = " SELECT * FROM " . TABLE_ADMIN_PAGES . " ORDER BY menu_key ASC ";
That way, the listings are arranged close to the same as the menu items in the admin.

Makes it a little easier to compare.