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:
parent
84de4937b1
commit
c69916d57d
|
@ -499,21 +499,28 @@ jQuery(document).ready( function($) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var postID = $('#post_ID').val();
|
||||||
|
var postLock = $('#active_post_lock').val();
|
||||||
|
|
||||||
|
if ( ! postID || ! postLock ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var data = {
|
var data = {
|
||||||
action: 'wp-remove-post-lock',
|
action: 'wp-remove-post-lock',
|
||||||
_wpnonce: $('#_wpnonce').val(),
|
_wpnonce: $('#_wpnonce').val(),
|
||||||
post_ID: $('#post_ID').val(),
|
post_ID: postID,
|
||||||
active_post_lock: $('#active_post_lock').val()
|
active_post_lock: postLock
|
||||||
};
|
};
|
||||||
|
|
||||||
if (window.FormData && window.navigator.sendBeacon) {
|
if ( window.FormData && window.navigator.sendBeacon ) {
|
||||||
var formData = new window.FormData();
|
var formData = new window.FormData();
|
||||||
|
|
||||||
$.each(data, function(key, value) {
|
$.each( data, function( key, value ) {
|
||||||
formData.append(key, value);
|
formData.append( key, value );
|
||||||
});
|
});
|
||||||
|
|
||||||
if (window.navigator.sendBeacon(ajaxurl, formData)) {
|
if ( window.navigator.sendBeacon( ajaxurl, formData ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue