Reverting r27280: Shows a PHP warning, and doesn't seem to fix the bug. If it should...
[lhc/web/wiklou.git] / includes / Parser.php
index beb9c87..3815dcb 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__ );