From 1c2d1a2662965e08c7738fe158148db4965db7ba Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Mon, 5 Apr 2004 11:41:41 +0000 Subject: [PATCH] dirty hack to work around the one-space-at-beginning-required problem --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index fa5aa38ec6..f2ec33308b 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -426,7 +426,7 @@ class Parser $text = $wgDateFormatter->reformat( $this->mOptions->getDateFormat(), $text ); } - $text = $this->replaceExternalLinks( $text ); + $text = ' '.$this->replaceExternalLinks( $text ); $text = $this->doTokenizedParser ( $text ); $text = $this->doTableStuff ( $text ) ; -- 2.20.1