From: Gabriel Wicke Date: Mon, 5 Apr 2004 11:41:41 +0000 (+0000) Subject: dirty hack to work around the one-space-at-beginning-required problem X-Git-Tag: 1.3.0beta1~589 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=1c2d1a2662965e08c7738fe158148db4965db7ba;p=lhc%2Fweb%2Fwiklou.git dirty hack to work around the one-space-at-beginning-required problem --- 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 ) ;