Fix post_author_meta_box(). See #14572

git-svn-id: http://svn.automattic.com/wordpress/trunk@15541 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
scribu 2010-08-27 00:24:41 +00:00
parent 18469c28ff
commit 7a62e9057d
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
}