From 6b144ab46af5f29c74360a0b0d6d3e8c9162baf4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 13 Aug 2021 15:50:58 +0000 Subject: [PATCH] Docs: Correct `@since` version for the `wp_parse_str` filter. The filter was introduced along with the `wp_parse_str()` function in WordPress 2.2.1. Follow-up to [5709], [8662], [26485]. See #53399. Built from https://develop.svn.wordpress.org/trunk@51609 git-svn-id: http://core.svn.wordpress.org/trunk@51220 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index d3b22ca119..3e9797484c 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -4969,7 +4969,7 @@ function wp_parse_str( $string, &$array ) { /** * Filters the array of variables derived from a parsed string. * - * @since 2.3.0 + * @since 2.2.1 * * @param array $array The array populated with variables. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index 5784245636..02199cb1db 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51608'; +$wp_version = '5.9-alpha-51609'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.