Make WordPress Core


Ignore:
Timestamp:
04/07/2007 03:53:19 PM (17 years ago)
Author:
rob1n
Message:

Sort the importers by name, instead of filename. Easier to find stuff, no?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-functions.php

    r5184 r5206  
    18711871function get_importers() {
    18721872    global $wp_importers;
    1873 
     1873    usort($wp_importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);'));
    18741874    return $wp_importers;
    18751875}
Note: See TracChangeset for help on using the changeset viewer.