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

Built from https://develop.svn.wordpress.org/trunk@27374


git-svn-id: http://core.svn.wordpress.org/trunk@27223 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2014-03-03 17:09:14 +00:00
parent fb56a9942b
commit cc7a2e29f5
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
function get_importers() {
global $wp_importers;
if ( is_array( $wp_importers ) ) {
uasort( $wp_importers, '_uasort_by_first_member' );
uasort( $wp_importers, '_usort_by_first_member' );
}
return $wp_importers;
}
@ -33,7 +33,7 @@ function get_importers() {
* @param array $b
* @return int
*/
function _uasort_by_first_member( $a, $b ) {
function _usort_by_first_member( $a, $b ) {
return strnatcasecmp( $a[0], $b[0] );
}