Coding Standards: Fix WPCS issue in [51682].

This fixes a "Misleading line break before `'||'`; readers may interpret this as an expression boundary" error.

See #54030.
Built from https://develop.svn.wordpress.org/trunk@51683


git-svn-id: http://core.svn.wordpress.org/trunk@51289 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-08-28 01:34:56 +00:00
parent 79b0d3f3e8
commit 42c7a1fad5
2 changed files with 3 additions and 3 deletions

View File

@ -8462,8 +8462,8 @@
}
// Abort if we're inside of a block editor instance.
if ( event.target.closest( '.block-editor-writing-flow' ) !== null
|| event.target.closest( '.block-editor-block-list__block-popover' ) !== null
if ( event.target.closest( '.block-editor-writing-flow' ) !== null ||
event.target.closest( '.block-editor-block-list__block-popover' ) !== null
) {
return;
}

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.9-alpha-51682';
$wp_version = '5.9-alpha-51683';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.