diff --git a/wp-admin/includes/revision.php b/wp-admin/includes/revision.php index 496282529c..9c4df8a943 100644 --- a/wp-admin/includes/revision.php +++ b/wp-admin/includes/revision.php @@ -281,7 +281,7 @@ function wp_prepare_revisions_for_js( $post, $selected_revision_id, $from = null $revisions[ $post->ID ] = array( 'id' => $post->ID, 'title' => get_the_title( $post->ID ), - 'author' => $authors[ $post->post_author ], + 'author' => $authors[ $revision->post_author ], 'date' => date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_modified ) ), 'dateShort' => date_i18n( _x( 'j M @ H:i', 'revision date short format' ), strtotime( $post->post_modified ) ), /* translators: %s: Human-readable time difference. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index cb10867bea..3a95de8f3b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-50127'; +$wp_version = '5.7-alpha-50128'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.