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

git-svn-id: https://develop.svn.wordpress.org/trunk@27374 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-03-03 17:08:26 +00:00
parent 7937358328
commit 0aae0ca1e6
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] );
}