From 11c9dd35bb7cf20b0fb829824b44fec35a4c3b4e Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Wed, 7 Nov 2007 11:16:43 +0000 Subject: [PATCH] Reverting r27280: Shows a PHP warning, and doesn't seem to fix the bug. If it should be passed by reference, please change the function itself. --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index beb9c87a8a..3815dcb4f2 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