From: Gabriel Wicke Date: Thu, 27 May 2004 01:38:38 +0000 (+0000) Subject: run replaceInternalLinks twice to render links/images in captions of images X-Git-Tag: 1.5.0alpha1~3192 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=14abd5d7d209247a3ae4631067d58b39249b6a99;p=lhc%2Fweb%2Fwiklou.git run replaceInternalLinks twice to render links/images in captions of images --- 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 );