From: Wil Mahan Date: Thu, 23 Sep 2004 07:25:02 +0000 (+0000) Subject: Revert previous change, which broke interwiki links. X-Git-Tag: 1.5.0alpha1~1849 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=b541d3bf4bb7309ff19e3940b257ddd4ad8b5ee2;p=lhc%2Fweb%2Fwiklou.git Revert previous change, which broke interwiki links. --- diff --git a/includes/Parser.php b/includes/Parser.php index c9731b8d5e..1549f82304 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -661,11 +661,11 @@ class Parser $text = $wgDateFormatter->reformat( $this->mOptions->getDateFormat(), $text ); } $text = $this->doAllQuotes( $text ); + $text = $this->replaceExternalLinks( $text ); $text = $this->doMagicLinks( $text ); $text = $this->replaceInternalLinks ( $text ); # Another call to replace links and images inside captions of images $text = $this->replaceInternalLinks ( $text ); - $text = $this->replaceExternalLinks( $text ); $text = $this->doTableStuff( $text ); $text = $this->formatHeadings( $text, $isMain );