texturize fix from that Andy guy. fixes #2634
git-svn-id: https://develop.svn.wordpress.org/trunk@3686 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d17b992895
commit
c08c837e42
|
@ -41,7 +41,7 @@ function wptexturize($text) {
|
|||
} else {
|
||||
$next = true;
|
||||
}
|
||||
$curl = preg_replace('/&([^#])(?![a-z1-4]{1,8};)/', '&$1', $curl);
|
||||
$curl = preg_replace('/&([^#])(?![a-zA-Z1-4]{1,8};)/', '&$1', $curl);
|
||||
$output .= $curl;
|
||||
}
|
||||
return $output;
|
||||
|
|
Loading…
Reference in New Issue