diff --git a/src/wp-includes/shortcodes.php b/src/wp-includes/shortcodes.php index df29332215..728ec26484 100644 --- a/src/wp-includes/shortcodes.php +++ b/src/wp-includes/shortcodes.php @@ -488,9 +488,9 @@ function get_shortcode_atts_regex() { * retrieval of the attributes, since all attributes have to be known. * * @since 2.5.0 - * @since 5.3.0 Support of a full shortcode input. + * @since 5.3.0 Added support of a full shortcode input. * - * @param string $text Any single shortcode of any format or key/value pair string. + * @param string $text Any single shortcode of any format or key/value pair string. * @return array|string List of attribute values. * Returns empty array if trim( $text ) == '""'. * Returns empty string if trim( $text ) == ''. diff --git a/tests/phpunit/tests/shortcode.php b/tests/phpunit/tests/shortcode.php index f219a4eb0d..b836a590cc 100644 --- a/tests/phpunit/tests/shortcode.php +++ b/tests/phpunit/tests/shortcode.php @@ -992,8 +992,6 @@ EOF; /** * Data provider for `test_shortcode_parse_atts()`. * - * @ticket 47863 - * * @return array { * @type array { * @type string $text A single shortcode format or key/value pair string.