mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
Sort only when importers exist. Props aaroncampbell. fixes #13806
git-svn-id: http://svn.automattic.com/wordpress/trunk@15181 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
64f3e40880
commit
e47306254c
@ -83,11 +83,10 @@ foreach ( $popular_importers as $pop_importer => $pop_data ) {
|
|||||||
$importers[$pop_importer] = $popular_importers[$pop_importer];
|
$importers[$pop_importer] = $popular_importers[$pop_importer];
|
||||||
}
|
}
|
||||||
|
|
||||||
uasort($importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);'));
|
|
||||||
|
|
||||||
if (empty ($importers)) {
|
if (empty ($importers)) {
|
||||||
echo '<p>'.__('No importers are available.').'</p>'; // TODO: make more helpful
|
echo '<p>'.__('No importers are available.').'</p>'; // TODO: make more helpful
|
||||||
} else {
|
} else {
|
||||||
|
uasort($importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);'));
|
||||||
?>
|
?>
|
||||||
<table class="widefat" cellspacing="0">
|
<table class="widefat" cellspacing="0">
|
||||||
|
|
||||||
@ -140,4 +139,3 @@ if ( current_user_can('install_plugins') )
|
|||||||
|
|
||||||
include ('admin-footer.php');
|
include ('admin-footer.php');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user