From: Wil Mahan Date: Wed, 22 Sep 2004 20:04:11 +0000 (+0000) Subject: Don't unstrip() in internalParse(), because it's already done in parse(). X-Git-Tag: 1.5.0alpha1~1877 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=6cc7b51210dd10555cdcbc20314cf8f6218571fa;p=lhc%2Fweb%2Fwiklou.git Don't unstrip() in internalParse(), because it's already done in parse(). This fixes *list item, which was caught thanks to the parser tester. :) --- diff --git a/includes/Parser.php b/includes/Parser.php index 0a4357bda3..32dbc406b6 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -667,9 +667,6 @@ class Parser # Another call to replace links and images inside captions of images $text = $this->replaceInternalLinks ( $text ); - $text = $this->unstrip( $text, $this->mStripState ); - $text = $this->unstripNoWiki( $text, $this->mStripState ); - $text = $this->doTableStuff( $text ); $text = $this->formatHeadings( $text, $isMain ); $sk =& $this->mOptions->getSkin();