Make WordPress Core

Ticket #29294: 29294.patch

File 29294.patch, 1.9 KB (added by azaozz, 10 years ago)
  • src/wp-admin/post.php

     
    229229        $post_id = edit_post();
    230230
    231231        // Session cookie flag that the post was saved
    232         if ( isset( $_COOKIE['wp-saving-post-' . $post_id] ) )
    233                 setcookie( 'wp-saving-post-' . $post_id, 'saved' );
     232        if ( isset( $_COOKIE['wp-saving-post'] ) && $_COOKIE['wp-saving-post'] === $post_id . '-check' ) {
     233                setcookie( 'wp-saving-post', $post_id . '-saved', time() + DAY_IN_SECONDS );
     234        }
    234235
    235236        redirect_post($post_id); // Send user on their way while we keep working
    236237
  • src/wp-includes/js/autosave.js

     
    286286                                                });
    287287                                        }
    288288
    289                                         wpCookies.set( 'wp-saving-post-' + post_id, 'check' );
     289                                        wpCookies.set( 'wp-saving-post', post_id + '-check', 24 * 60 * 60 );
    290290                                });
    291291                        }
    292292
     
    309309                        function checkPost() {
    310310                                var content, post_title, excerpt, $notice,
    311311                                        postData = getSavedPostData(),
    312                                         cookie = wpCookies.get( 'wp-saving-post-' + post_id );
     312                                        cookie = wpCookies.get( 'wp-saving-post' );
    313313
    314                                 if ( ! postData ) {
     314                                if ( cookie === post_id + '-saved' ) {
     315                                        wpCookies.remove( 'wp-saving-post' );
     316                                        // The post was saved properly, remove old data and bail
     317                                        setData( false );
    315318                                        return;
    316319                                }
    317320
    318                                 if ( cookie ) {
    319                                         wpCookies.remove( 'wp-saving-post-' + post_id );
    320 
    321                                         if ( cookie === 'saved' ) {
    322                                                 // The post was saved properly, remove old data and bail
    323                                                 setData( false );
    324                                                 return;
    325                                         }
     321                                if ( ! postData ) {
     322                                        return;
    326323                                }
    327324
    328325                                // There is a newer autosave. Don't show two "restore" notices at the same time.