Coding Standards: Remove extra space in `wp-admin/admin-ajax.php`.
Props rajeshraval786, costdev. Fixes #55692. Built from https://develop.svn.wordpress.org/trunk@53363 git-svn-id: http://core.svn.wordpress.org/trunk@52952 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f6ef37b050
commit
8f805f4ddd
|
@ -153,7 +153,8 @@ $core_actions_post_deprecated = array(
|
||||||
'health-check-background-updates',
|
'health-check-background-updates',
|
||||||
'health-check-loopback-requests',
|
'health-check-loopback-requests',
|
||||||
);
|
);
|
||||||
$core_actions_post = array_merge( $core_actions_post, $core_actions_post_deprecated );
|
|
||||||
|
$core_actions_post = array_merge( $core_actions_post, $core_actions_post_deprecated );
|
||||||
|
|
||||||
// Register core Ajax calls.
|
// Register core Ajax calls.
|
||||||
if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get, true ) ) {
|
if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get, true ) ) {
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.1-alpha-53362';
|
$wp_version = '6.1-alpha-53363';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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