Changeset 15181
- Timestamp:
- 06/09/2010 08:33:16 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import.php
r15135 r15181 84 84 } 85 85 86 uasort($importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);'));87 88 86 if (empty ($importers)) { 89 87 echo '<p>'.__('No importers are available.').'</p>'; // TODO: make more helpful 90 88 } else { 89 uasort($importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);')); 91 90 ?> 92 91 <table class="widefat" cellspacing="0"> … … 141 140 include ('admin-footer.php'); 142 141 ?> 143
Note: See TracChangeset
for help on using the changeset viewer.