Make WordPress Core

Changeset 27374


Ignore:
Timestamp:
03/03/2014 05:08:26 PM (11 years ago)
Author:
nacin
Message:

Slight renaming in our callback in [27373]. see #14424.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/import.php

    r27373 r27374  
    1717    global $wp_importers;
    1818    if ( is_array( $wp_importers ) ) {
    19         uasort( $wp_importers, '_uasort_by_first_member' );
     19        uasort( $wp_importers, '_usort_by_first_member' );
    2020    }
    2121    return $wp_importers;
     
    3434 * @return int
    3535 */
    36 function _uasort_by_first_member( $a, $b ) {
     36function _usort_by_first_member( $a, $b ) {
    3737    return strnatcasecmp( $a[0], $b[0] );
    3838}
Note: See TracChangeset for help on using the changeset viewer.