From 852fad75312245d1c1ae84bda740b34882162e12 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 9 Dec 2021 15:32:01 +0000 Subject: [PATCH] Coding Standards: Remove a trailing comma from a `compact()` call in `_wp_customize_include()`. This fixes a `Trailing comma's are not allowed in function calls in PHP 7.2 or earlier` error in the PHP compatibility check. Follow-up to [52348]. See #53359. Built from https://develop.svn.wordpress.org/trunk@52350 git-svn-id: http://core.svn.wordpress.org/trunk@51942 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 85a4c400cf..e4256f00a1 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -3477,7 +3477,7 @@ function _wp_customize_include() { 'messenger_channel', 'settings_previewed', 'autosaved', - 'branching', + 'branching' ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index e688d43bbd..f868081da7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-beta2-52349'; +$wp_version = '5.9-beta2-52350'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.