diff options
Diffstat (limited to 'wp-admin/admin-db.php')
| -rw-r--r-- | wp-admin/admin-db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-admin/admin-db.php b/wp-admin/admin-db.php index f5705f5..b41891f 100644 --- a/wp-admin/admin-db.php +++ b/wp-admin/admin-db.php @@ -34,7 +34,7 @@ function get_editable_authors( $user_id ) { return false; } else { $editable = join(',', $editable); - $authors = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE ID IN ($editable)" ); + $authors = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE ID IN ($editable) ORDER BY display_name" ); } return apply_filters('get_editable_authors', $authors); |
