From 6cc7b51210dd10555cdcbc20314cf8f6218571fa Mon Sep 17 00:00:00 2001 From: Wil Mahan Date: Wed, 22 Sep 2004 20:04:11 +0000 Subject: [PATCH] Don't unstrip() in internalParse(), because it's already done in parse(). This fixes *list item, which was caught thanks to the parser tester. :) --- includes/Parser.php | 3 --- 1 file changed, 3 deletions(-) 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(); -- 2.20.1