From 8769fbec0db1595c82b4504655c8d48f9c1d332d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 17 Jun 2022 11:31:49 +0000 Subject: [PATCH] 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 --- src/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.php b/src/index.php index 6aa8789ea0..0714b3beda 100644 --- a/src/index.php +++ b/src/index.php @@ -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; }