From: Chad Horohoe Date: Mon, 8 Feb 2010 11:30:17 +0000 (+0000) Subject: Cleanup r62111, don't pass by reference X-Git-Tag: 1.31.0-rc.0~37879 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=5fd1b2e4ba245200b6e0800aa6ddb624a341d35c;p=lhc%2Fweb%2Fwiklou.git Cleanup r62111, don't pass by reference --- 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 ) ) ); } /**