From a90bc8e1d419ce169d63058595b5af223d971393 Mon Sep 17 00:00:00 2001 From: scribu Date: Fri, 27 Aug 2010 00:24:41 +0000 Subject: [PATCH] Fix post_author_meta_box(). See #14572 git-svn-id: https://develop.svn.wordpress.org/trunk@15541 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/meta-boxes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php index 0b412b6558..abde84e198 100644 --- a/wp-admin/includes/meta-boxes.php +++ b/wp-admin/includes/meta-boxes.php @@ -508,7 +508,7 @@ function post_author_meta_box($post) { global $user_ID, $_editable_user_ids; ?> - $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?> + $_editable_user_ids, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>