From 14abd5d7d209247a3ae4631067d58b39249b6a99 Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Thu, 27 May 2004 01:38:38 +0000 Subject: [PATCH] run replaceInternalLinks twice to render links/images in captions of images --- includes/Parser.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/Parser.php b/includes/Parser.php index e434fb18fe..d5bbc156f6 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -586,6 +586,7 @@ class Parser $text = $this->doAllQuotes( $text ); $text = $this->replaceExternalLinks( $text ); $text = $this->replaceInternalLinks ( $text ); + $text = $this->replaceInternalLinks ( $text ); //$text = $this->doTokenizedParser ( $text ); $text = $this->doTableStuff ( $text ) ; $text = $this->magicISBN( $text ); -- 2.20.1