Block Hooks: Fix `@since` and deprecated versions.

Two `@since` PHPDoc fields, and the version argument to one `_deprecated_argument()` incorrectly stated 6.5.1 as the relevant WordPress version where a change was introduced.

This changeset fixes them by setting them to 6.5.3 instead.

Reviewed by swissspidy.
Merges [58042] to the to the 6.5 branch.

Follow-up to [58041].
See #60754.
Built from https://develop.svn.wordpress.org/branches/6.5@58043


git-svn-id: http://core.svn.wordpress.org/branches/6.5@57509 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Bernhard Reiter 2024-04-24 12:20:12 +00:00
parent 5b64778886
commit a4e4498d9f
2 changed files with 3 additions and 3 deletions

View File

@ -729,7 +729,7 @@ function _wp_build_title_and_description_for_taxonomy_block_template( $taxonomy,
* It is self-sufficient in that it only uses information passed as arguments; it does not
* query the database for additional information.
*
* @since 6.5.1
* @since 6.5.3
* @access private
*
* @param WP_Post $post Template post.
@ -1490,7 +1490,7 @@ function get_template_hierarchy( $slug, $is_custom = false, $template_prefix = '
*/
function inject_ignored_hooked_blocks_metadata_attributes( $changes, $deprecated = null ) {
if ( null !== $deprecated ) {
_deprecated_argument( __FUNCTION__, '6.5.1' );
_deprecated_argument( __FUNCTION__, '6.5.3' );
}
$hooked_blocks = get_hooked_blocks();

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.5.3-alpha-58041';
$wp_version = '6.5.3-alpha-58043';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.