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:
Sergey Biryukov 2022-05-07 16:21:18 +00:00
parent f6ef37b050
commit 8f805f4ddd
2 changed files with 3 additions and 2 deletions

View File

@ -153,7 +153,8 @@ $core_actions_post_deprecated = array(
'health-check-background-updates',
'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.
if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get, true ) ) {

View File

@ -16,7 +16,7 @@
*
* @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.