diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 658afaad3c..6c5184f697 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -6548,7 +6548,7 @@ function wp_auth_check( $response ) { */ function get_tag_regex( $tag ) { if ( empty( $tag ) ) { - return; + return ''; } return sprintf( '<%1$s[^<]*(?:>[\s\S]*<\/%1$s>|\s*\/>)', tag_escape( $tag ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 576c406219..cf08a83ddb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47429'; +$wp_version = '5.5-alpha-47430'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.