replace lost reference, per Bug 8451
authorSteve Sanbeg <sanbeg@users.mediawiki.org>
Tue, 6 Nov 2007 22:38:05 +0000 (22:38 +0000)
committerSteve Sanbeg <sanbeg@users.mediawiki.org>
Tue, 6 Nov 2007 22:38:05 +0000 (22:38 +0000)
includes/Parser.php

index 3815dcb..beb9c87 100644 (file)
@@ -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__ );