Ticket #44278: convert_smilies_regex_v2.patch
File convert_smilies_regex_v2.patch, 597 bytes (added by , 7 years ago) |
---|
-
wp-includes/formatting.php
3163 3163 $content = $textarr[ $i ]; 3164 3164 3165 3165 // If we're in an ignore block, wait until we find its closing tag 3166 if ( '' == $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ') >/', $content, $matches ) ) {3166 if ( '' == $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ').*>/U', $content, $matches ) ) { 3167 3167 $ignore_block_element = $matches[1]; 3168 3168 } 3169 3169