From 832dd52aded67dd2830e2f73d869c788e5140539 Mon Sep 17 00:00:00 2001 From: Joe McGill Date: Fri, 10 Nov 2023 15:12:27 +0000 Subject: [PATCH] Themes: Correct docblock for _register_theme_block_patterns. This updates the '@since 6.4.0' annotation in `_register_theme_block_patterns` to reference `WP_Theme::get_block_patterns` instead of `_wp_get_block_patterns`, which was changed in [56978]. Props audrasjb, mukesh27, joemcgill. Fixes #59869. Built from https://develop.svn.wordpress.org/trunk@57102 git-svn-id: http://core.svn.wordpress.org/trunk@56613 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/block-patterns.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/block-patterns.php b/wp-includes/block-patterns.php index b74f75611f..66bdfd68e7 100644 --- a/wp-includes/block-patterns.php +++ b/wp-includes/block-patterns.php @@ -324,7 +324,7 @@ function _register_remote_theme_patterns() { * @since 6.0.0 * @since 6.1.0 The `postTypes` property was added. * @since 6.2.0 The `templateTypes` property was added. - * @since 6.4.0 Uses the `_wp_get_block_patterns` function. + * @since 6.4.0 Uses the `WP_Theme::get_block_patterns` method. * @access private */ function _register_theme_block_patterns() { diff --git a/wp-includes/version.php b/wp-includes/version.php index 98a7ecb14f..7a954be22a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57101'; +$wp_version = '6.5-alpha-57102'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.