diff --git a/wp-includes/functions-formatting.php b/wp-includes/functions-formatting.php index 77bbe22a6..bab767a10 100644 --- a/wp-includes/functions-formatting.php +++ b/wp-includes/functions-formatting.php @@ -10,8 +10,9 @@ function wptexturize($text) { if (isset($curl{0}) && '<' != $curl{0} && $next) { // If it's not a tag $curl = str_replace('---', '—', $curl); - $curl = preg_replace('/(\s)--(\s)/', '$1—$2', $curl); + $curl = str_replace(' -- ', ' — ', $curl); $curl = str_replace('--', '–', $curl); + $curl = str_replace('xn–', 'xn--', $curl); $curl = str_replace('...', '…', $curl); $curl = str_replace('``', '“', $curl);