From b541d3bf4bb7309ff19e3940b257ddd4ad8b5ee2 Mon Sep 17 00:00:00 2001 From: Wil Mahan Date: Thu, 23 Sep 2004 07:25:02 +0000 Subject: [PATCH] Revert previous change, which broke interwiki links. --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1