From 8cd10858730c9b3fa4c5d0931bba434e5fbb1be0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sat, 26 Mar 2005 02:50:01 +0000 Subject: [PATCH] Indentation fix, there was a bit too much of it... --- includes/Parser.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/Parser.php b/includes/Parser.php index bba5a9169b..1b1398d489 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -174,10 +174,10 @@ class Parser $text = $this->internalParse( $text, $linestart ); $dashReplace = array( - '/ - /' => " – ", # N dash - '/(?<=[0-9])-(?=[0-9])/' => "–", # N dash between numbers - '/ -- /' => " — " # M dash - ); + '/ - /' => " – ", # N dash + '/(?<=[0-9])-(?=[0-9])/' => "–", # N dash between numbers + '/ -- /' => " — " # M dash + ); $text = preg_replace( array_keys($dashReplace), array_values($dashReplace), $text ); -- 2.20.1