From 64bad51b7dc0af26173f287910ed4ecab27d63e3 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Fri, 19 Feb 2010 23:21:58 +0000 Subject: [PATCH] Fixed unnecessary assignment (from r61913) --- includes/parser/CoreTagHooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { -- 2.20.1