We need the ampersand fixer in the loop too.

git-svn-id: https://develop.svn.wordpress.org/trunk@177 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-06-06 22:51:33 +00:00
parent 93a987f7af
commit 170a41cb0f
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ function wptexturize($text) {
$curl = preg_replace("/\(tm\)/i", '™', $curl);
$curl = preg_replace("/\(c\)/i", '©', $curl);
$curl = preg_replace("/\(r\)/i", '®', $curl);
$curl = preg_replace('/&([^#])(?![a-z]{1,8};)/', '&$1', $curl);
$curl = str_replace("''", '”', $curl);
$curl = preg_replace('/(d+)x(\d+)/', "$1×$2", $curl);