Reverting r27280: Shows a PHP warning, and doesn't seem to fix the bug. If it should...
authorRotem Liss <rotem@users.mediawiki.org>
Wed, 7 Nov 2007 11:16:43 +0000 (11:16 +0000)
committerRotem Liss <rotem@users.mediawiki.org>
Wed, 7 Nov 2007 11:16:43 +0000 (11:16 +0000)
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__ );