From 4ec10dc89a1f0ec7ef3cc5447478995bb75e8d71 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sun, 25 Sep 2011 16:40:30 +1000 Subject: [PATCH] Fixed arrow glyphs in auto unicode --- inc/functions.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index 7ba2278b..d47cecf1 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -1213,15 +1213,15 @@ } if($config['auto_unicode']) { - $body = str_replace('...', '…', $body); - $body = str_replace('<--', '←', $body); - $body = str_replace('-->', '→', $body); - + $body = str_replace('...', '…', $body); + $body = str_replace('<--', '←', $body); + $body = str_replace('-->', '→', $body); + // En and em- dashes are rendered exactly the same in // most monospace fonts (they look the same in code // editors). - $body = str_replace('---', '—', $body); // em dash - $body = str_replace('--', '–', $body); // en dash + $body = str_replace('---', '–', $body); // em dash + $body = str_replace('--', '—', $body); // en dash } // Cites