Editor: do not send the request for releasing the post lock on unload when post_ID or active_post_lock is missing.

Props dlh, adamsilverstein.
Fixes #38271.
Built from https://develop.svn.wordpress.org/trunk@38772


git-svn-id: http://core.svn.wordpress.org/trunk@38715 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2016-10-10 22:42:30 +00:00
parent 84de4937b1
commit c69916d57d
3 changed files with 16 additions and 9 deletions

View File

@ -105,7 +105,7 @@ window.wp = window.wp || {};
* Overwrite the content of the Featured Image postbox
*
* @param {string} html New HTML to be displayed in the content area of the postbox.
*
*
* @global
*/
WPSetThumbnailHTML = function(html){
@ -499,21 +499,28 @@ jQuery(document).ready( function($) {
return;
}
var postID = $('#post_ID').val();
var postLock = $('#active_post_lock').val();
if ( ! postID || ! postLock ) {
return;
}
var data = {
action: 'wp-remove-post-lock',
_wpnonce: $('#_wpnonce').val(),
post_ID: $('#post_ID').val(),
active_post_lock: $('#active_post_lock').val()
post_ID: postID,
active_post_lock: postLock
};
if (window.FormData && window.navigator.sendBeacon) {
if ( window.FormData && window.navigator.sendBeacon ) {
var formData = new window.FormData();
$.each(data, function(key, value) {
formData.append(key, value);
$.each( data, function( key, value ) {
formData.append( key, value );
});
if (window.navigator.sendBeacon(ajaxurl, formData)) {
if ( window.navigator.sendBeacon( ajaxurl, formData ) ) {
return;
}
}

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-alpha-38771';
$wp_version = '4.7-alpha-38772';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.