Changeset 27374
- Timestamp:
- 03/03/2014 05:08:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/import.php
r27373 r27374 17 17 global $wp_importers; 18 18 if ( is_array( $wp_importers ) ) { 19 uasort( $wp_importers, '_u asort_by_first_member' );19 uasort( $wp_importers, '_usort_by_first_member' ); 20 20 } 21 21 return $wp_importers; … … 34 34 * @return int 35 35 */ 36 function _u asort_by_first_member( $a, $b ) {36 function _usort_by_first_member( $a, $b ) { 37 37 return strnatcasecmp( $a[0], $b[0] ); 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.