Add nonce to AJAX action for script compression setting

Built from https://develop.svn.wordpress.org/trunk@37143


git-svn-id: http://core.svn.wordpress.org/trunk@37110 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Nikolay Bachiyski 2016-03-30 18:21:25 +00:00
parent db47a4913c
commit 9b7a775413
3 changed files with 5 additions and 2 deletions

View File

@ -197,8 +197,10 @@ function wp_ajax_wp_compression_test() {
echo $out; echo $out;
wp_die(); wp_die();
} elseif ( 'no' == $_GET['test'] ) { } elseif ( 'no' == $_GET['test'] ) {
check_ajax_referer( 'update_can_compress_scripts' );
update_site_option('can_compress_scripts', 0); update_site_option('can_compress_scripts', 0);
} elseif ( 'yes' == $_GET['test'] ) { } elseif ( 'yes' == $_GET['test'] ) {
check_ajax_referer( 'update_can_compress_scripts' );
update_site_option('can_compress_scripts', 1); update_site_option('can_compress_scripts', 1);
} }
} }

View File

@ -1789,6 +1789,7 @@ function _media_states( $post ) {
function compression_test() { function compression_test() {
?> ?>
<script type="text/javascript"> <script type="text/javascript">
var compressionNonce = <?php echo wp_json_encode( wp_create_nonce( 'update_can_compress_scripts' ) ); ?>;
var testCompression = { var testCompression = {
get : function(test) { get : function(test) {
var x; var x;
@ -1808,7 +1809,7 @@ function compression_test() {
} }
}; };
x.open('GET', ajaxurl + '?action=wp-compression-test&test='+test+'&'+(new Date()).getTime(), true); x.open('GET', ajaxurl + '?action=wp-compression-test&test='+test+'&_ajax_nonce='+compressionNonce+'&'+(new Date()).getTime(), true);
x.send(''); x.send('');
} }
}, },

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-RC1-37135'; $wp_version = '4.5-RC1-37143';
/** /**
* 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.