Skip to content

Commit

Permalink
Update code & fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradp committed Jun 27, 2019
1 parent 4cd7c9b commit 7ba4d4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wp-includes/formatting.php
Expand Up @@ -3230,7 +3230,7 @@ function convert_smilies( $text ) {
$content = $textarr[ $i ];

// If we're in an ignore block, wait until we find its closing tag
if ( '' == $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) {
if ( '' == $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')[^>]*>/', $content, $matches ) ) {
$ignore_block_element = $matches[1];
}

Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Expand Up @@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-alpha-45568';
$wp_version = '5.3-alpha-45569';

/**
* Holds the Worndpress DB revision, increments when changes are made to the Worndpress DB schema.
Expand Down

0 comments on commit 7ba4d4e

Please sign in to comment.