Fixed unnecessary assignment (from r61913)
authorTim Starling <tstarling@users.mediawiki.org>
Fri, 19 Feb 2010 23:21:58 +0000 (23:21 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Fri, 19 Feb 2010 23:21:58 +0000 (23:21 +0000)
includes/parser/CoreTagHooks.php

index b389e50..7cc8260 100644 (file)
@@ -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 ) {