From 01ef4daf2d0b32926d456767084f55f81887e9ea Mon Sep 17 00:00:00 2001 From: Steve Sanbeg Date: Tue, 6 Nov 2007 22:38:05 +0000 Subject: [PATCH] replace lost reference, per Bug 8451 --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index 3815dcb4f2..beb9c87a8a 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -412,7 +412,7 @@ class Parser function recursiveTagParse( $text ) { wfProfileIn( __METHOD__ ); wfRunHooks( 'ParserBeforeStrip', array( &$this, &$text, &$this->mStripState ) ); - $text = $this->strip( $text, $this->mStripState ); + $text = $this->strip( $text, &$this->mStripState ); wfRunHooks( 'ParserAfterStrip', array( &$this, &$text, &$this->mStripState ) ); $text = $this->internalParse( $text ); wfProfileOut( __METHOD__ ); -- 2.20.1