From e26b369fb24f915dc4f37a0c0a4a64efcf4d7054 Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 7 Oct 2022 01:58:11 +0000 Subject: [PATCH] Build/Test Tools: Use `require_once` instead of `require`. The `sync-stable-blocks.js` file is used to compile the contents of `require-dynamic-blocks.php`, which includes the PHP files required for dynamic Core blocks. Since these files define PHP functions, `require_once` should be used instead of `require` to guard against fatal errors. Follow up to [53688]. Props aristath, SergeyBiryukov, desrosj. Fixes #56738. See #56179. Built from https://develop.svn.wordpress.org/trunk@54406 git-svn-id: http://core.svn.wordpress.org/trunk@53965 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 189a356b36..5e55257e1e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-beta3-54405'; +$wp_version = '6.1-beta3-54406'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.