mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Alter the regex in wptexturize() to properly handle input like: <> "Hello world" <>.
Updates unit test data. Props miqrogroove. Fixes #30344. git-svn-id: https://develop.svn.wordpress.org/trunk@31965 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -235,7 +235,7 @@ function wptexturize($text, $reset = false) {
|
||||
. '(?(?=!--)' // Is this a comment?
|
||||
. $comment_regex // Find end of comment.
|
||||
. '|'
|
||||
. '[^>]+>' // Find end of element.
|
||||
. '[^>]*>' // Find end of element.
|
||||
. ')'
|
||||
. '|'
|
||||
. $shortcode_regex // Find shortcodes.
|
||||
|
||||
Reference in New Issue
Block a user