From: Steve Sanbeg Date: Tue, 6 Nov 2007 22:38:05 +0000 (+0000) Subject: replace lost reference, per Bug 8451 X-Git-Tag: 1.31.0-rc.0~50968 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=01ef4daf2d0b32926d456767084f55f81887e9ea;p=lhc%2Fweb%2Fwiklou.git replace lost reference, per Bug 8451 --- 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__ );