Fix post_author_meta_box(). See #14572

git-svn-id: https://develop.svn.wordpress.org/trunk@15541 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu 2010-08-27 00:24:41 +00:00
parent 0b1b005b66
commit a90bc8e1d4
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ function post_author_meta_box($post) {
global $user_ID, $_editable_user_ids;
?>
<label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label><?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>
<label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label><?php wp_dropdown_users( array('include' => $_editable_user_ids, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>
<?php
}