Make WordPress Core


Ignore:
Timestamp:
04/07/2007 07:06:33 PM (19 years ago)
Author:
rob1n
Message:

Fixed sorting -- uasort() instead of usort().

File:
1 edited

Legend:

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

    r5210 r5211  
    18711871function get_importers() {
    18721872    global $wp_importers;
    1873 //  usort($wp_importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);'));
     1873    uasort($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.