Revisions: Restore the return value of `wp_get_post_autosave()` to the documented type of `WP_Post` for backward compatibility.
Follow-up to [48422]. See #34560. Built from https://develop.svn.wordpress.org/trunk@48438 git-svn-id: http://core.svn.wordpress.org/trunk@48207 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a59fb4e50f
commit
f718b4b6ec
|
@ -221,9 +221,9 @@ function wp_save_post_revision( $post_id ) {
|
|||
/**
|
||||
* Retrieve the autosaved data of the specified post.
|
||||
*
|
||||
* Returns an object containing the information that was autosaved for the
|
||||
* specified post. If the optional $user_id is passed, returns the autosave for that user
|
||||
* otherwise returns the latest autosave.
|
||||
* Returns a post object with the information that was autosaved for the specified post.
|
||||
* If the optional $user_id is passed, returns the autosave for that user, otherwise
|
||||
* returns the latest autosave.
|
||||
*
|
||||
* @since 2.6.0
|
||||
*
|
||||
|
@ -237,7 +237,7 @@ function wp_get_post_autosave( $post_id, $user_id = 0 ) {
|
|||
$autosave_name = $post_id . '-autosave-v1';
|
||||
$user_id_query = ( 0 !== $user_id ) ? "AND post_author = $user_id" : null;
|
||||
|
||||
// Construct the autosave query
|
||||
// Construct the autosave query.
|
||||
$autosave_query = "
|
||||
SELECT *
|
||||
FROM $wpdb->posts
|
||||
|
@ -260,7 +260,7 @@ function wp_get_post_autosave( $post_id, $user_id = 0 ) {
|
|||
return false;
|
||||
}
|
||||
|
||||
return $autosave[0];
|
||||
return get_post( $autosave[0] );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-beta1-48437';
|
||||
$wp_version = '5.5-beta1-48438';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue