Make WordPress Core

Ticket #34560: 34560.16.diff

File 34560.16.diff, 4.8 KB (added by adamsilverstein, 5 years ago)
  • src/wp-admin/includes/meta-boxes.php

    diff --git src/wp-admin/includes/meta-boxes.php src/wp-admin/includes/meta-boxes.php
    index 4584fff555..95513ae74e 100644
    function register_and_do_post_meta_boxes( $post ) { 
    14371437
    14381438        $publish_callback_args = array( '__back_compat_meta_box' => true );
    14391439        if ( post_type_supports( $post_type, 'revisions' ) && 'auto-draft' !== $post->post_status ) {
    1440                 $revisions = wp_get_post_revisions( $post->ID );
     1440                $revisions = wp_get_post_revisions( $post->ID, array( 'fields' => 'ids' ) );
    14411441
    14421442                // We should aim to show the revisions meta box only when there are revisions.
    14431443                if ( count( $revisions ) > 1 ) {
    14441444                        reset( $revisions ); // Reset pointer for key().
    14451445                        $publish_callback_args = array(
    14461446                                'revisions_count'        => count( $revisions ),
    1447                                 'revision_id'            => key( $revisions ),
     1447                                'revision_id'            => array_shift( $revisions ),
    14481448                                '__back_compat_meta_box' => true,
    14491449                        );
    14501450                        add_meta_box( 'revisionsdiv', __( 'Revisions' ), 'post_revisions_meta_box', null, 'normal', 'core', array( '__back_compat_meta_box' => true ) );
  • src/wp-includes/revision.php

    diff --git src/wp-includes/revision.php src/wp-includes/revision.php
    index 9eb74b98a9..119bef816b 100644
    function wp_save_post_revision( $post_id ) { 
    221221/**
    222222 * Retrieve the autosaved data of the specified post.
    223223 *
    224  * Returns a post object containing the information that was autosaved for the
     224 * Returns an object containing the information that was autosaved for the
    225225 * specified post. If the optional $user_id is passed, returns the autosave for that user
    226226 * otherwise returns the latest autosave.
    227227 *
    function wp_save_post_revision( $post_id ) { 
    232232 * @return WP_Post|false The autosaved data or false on failure or when no autosave exists.
    233233 */
    234234function wp_get_post_autosave( $post_id, $user_id = 0 ) {
    235         $revisions = wp_get_post_revisions( $post_id, array( 'check_enabled' => false ) );
     235        global $wpdb;
    236236
    237         foreach ( $revisions as $revision ) {
    238                 if ( false !== strpos( $revision->post_name, "{$post_id}-autosave" ) ) {
    239                         if ( $user_id && $user_id != $revision->post_author ) {
    240                                 continue;
    241                         }
     237        $autosave_name = $post_id . '-autosave-v1';
     238        $user_id_query = ( 0 !== $user_id ) ? "AND post_author = $user_id" : null;
     239
     240        // Construct the autosave query
     241        $autosave_query = "
     242                SELECT *
     243                FROM $wpdb->posts
     244                WHERE post_parent = %d
     245                AND post_type = 'revision'
     246                AND post_status = 'inherit'
     247                AND post_name   = %s " . $user_id_query . '
     248                ORDER BY post_date DESC
     249                LIMIT 1';
     250
     251        $autosave = $wpdb->get_results(
     252                $wpdb->prepare(
     253                        $autosave_query,
     254                        $post_id,
     255                        $autosave_name
     256                )
     257        );
    242258
    243                         return $revision;
    244                 }
     259        if ( ! $autosave ) {
     260                return false;
    245261        }
    246262
    247         return false;
     263        return $autosave[0];
    248264}
    249265
    250266/**
  • tests/phpunit/tests/ajax/CustomizeManager.php

    diff --git tests/phpunit/tests/ajax/CustomizeManager.php tests/phpunit/tests/ajax/CustomizeManager.php
    index 1126e8e667..1ed20de31f 100644
    class Tests_Ajax_CustomizeManager extends WP_Ajax_UnitTestCase { 
    472472                $this->assertTrue( $this->_last_response_parsed['success'] );
    473473                $this->assertEquals( 'draft', $this->_last_response_parsed['data']['changeset_status'] );
    474474                $autosave_revision = wp_get_post_autosave( $post_id );
    475                 $this->assertInstanceOf( 'WP_Post', $autosave_revision );
     475                $this->assertInstanceOf( 'stdClass', $autosave_revision );
    476476
    477477                $this->assertContains( 'New Site Title', get_post( $post_id )->post_content );
    478478                $this->assertContains( 'Autosaved Site Title', $autosave_revision->post_content );
    class Tests_Ajax_CustomizeManager extends WP_Ajax_UnitTestCase { 
    699699                );
    700700                $this->assertNotWPError( $r );
    701701                $autosave_revision = wp_get_post_autosave( $wp_customize->changeset_post_id() );
    702                 $this->assertInstanceOf( 'WP_Post', $autosave_revision );
     702                $this->assertInstanceOf( 'stdClass', $autosave_revision );
    703703                $this->assertContains( 'Foo', get_post( $wp_customize->changeset_post_id() )->post_content );
    704704                $this->assertContains( 'Bar', $autosave_revision->post_content );
    705705
  • tests/phpunit/tests/customize/manager.php

    diff --git tests/phpunit/tests/customize/manager.php tests/phpunit/tests/customize/manager.php
    index 00dcd333c6..dda069dfc1 100644
    class Tests_WP_Customize_Manager extends WP_UnitTestCase { 
    18911891
    18921892                // Verify that autosave happened.
    18931893                $autosave_revision = wp_get_post_autosave( $changeset_post_id, get_current_user_id() );
    1894                 $this->assertInstanceOf( 'WP_Post', $autosave_revision );
     1894                $this->assertInstanceOf( 'stdClass', $autosave_revision );
    18951895                $this->assertContains( 'Draft Title', get_post( $changeset_post_id )->post_content );
    18961896                $this->assertContains( 'Autosave Title', $autosave_revision->post_content );
    18971897        }