From 5fd1b2e4ba245200b6e0800aa6ddb624a341d35c Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 8 Feb 2010 11:30:17 +0000 Subject: [PATCH] Cleanup r62111, don't pass by reference --- includes/parser/CoreParserFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/parser/CoreParserFunctions.php b/includes/parser/CoreParserFunctions.php index c2a3a42e4e..cc868d78f9 100644 --- a/includes/parser/CoreParserFunctions.php +++ b/includes/parser/CoreParserFunctions.php @@ -459,7 +459,7 @@ class CoreParserFunctions { * Performs the pipetrick and then url encodes the result */ static function pipetricke( $parser, $link = '', $text = '' ) { - return wfUrlEncode( str_replace( ' ', '_', CoreParserFunctions::pipetrick( &$parser, $link, $text ) ) ); + return wfUrlEncode( str_replace( ' ', '_', self::pipetrick( $parser, $link, $text ) ) ); } /** -- 2.20.1