From: Tim Starling Date: Fri, 19 Feb 2010 23:21:58 +0000 (+0000) Subject: Fixed unnecessary assignment (from r61913) X-Git-Tag: 1.31.0-rc.0~37692 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=64bad51b7dc0af26173f287910ed4ecab27d63e3;p=lhc%2Fweb%2Fwiklou.git Fixed unnecessary assignment (from r61913) --- diff --git a/includes/parser/CoreTagHooks.php b/includes/parser/CoreTagHooks.php index b389e50d16..7cc8260eb0 100644 --- a/includes/parser/CoreTagHooks.php +++ b/includes/parser/CoreTagHooks.php @@ -40,7 +40,7 @@ class CoreTagHooks { static function math( $content, $attributes, $parser ) { global $wgContLang; - return $output = $wgContLang->armourMath( MathRenderer::renderMath( $content, $attributes ) ); + return $wgContLang->armourMath( MathRenderer::renderMath( $content, $attributes ) ); } static function gallery( $content, $attributes, $parser ) {