From 42c7a1fad58515791f32d30c988ea31c8c95c0f6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 28 Aug 2021 01:34:56 +0000 Subject: [PATCH] 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 --- wp-admin/js/customize-controls.js | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/js/customize-controls.js b/wp-admin/js/customize-controls.js index 5656b41687..315e42d4c8 100644 --- a/wp-admin/js/customize-controls.js +++ b/wp-admin/js/customize-controls.js @@ -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; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 0ad94c5ff7..e5f905c68e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.