Coding Standards: Fix WPCS issue in [53518].

This fixes an "Concat operator must be surrounded by a single space" error.

See #54233.

git-svn-id: https://develop.svn.wordpress.org/trunk@53519 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2022-06-17 11:31:49 +00:00
parent d39bc7e304
commit 8769fbec0d

View File

@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
define( 'WPINC', 'wp-includes' );
if ( file_exists( ABSPATH . WPINC .'/js/dist/edit-post.js' ) ) {
if ( file_exists( ABSPATH . WPINC . '/js/dist/edit-post.js' ) ) {
require_once ABSPATH . '_index.php';
return;
}