r62726 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r62725‎ | r62726 | r62727 >
Date:23:21, 19 February 2010
Author:tstarling
Status:ok
Tags:
Comment:
Fixed unnecessary assignment (from r61913)
Modified paths:
  • /trunk/phase3/includes/parser/CoreTagHooks.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/parser/CoreTagHooks.php
@@ -40,7 +40,7 @@
4141
4242 static function math( $content, $attributes, $parser ) {
4343 global $wgContLang;
44 - return $output = $wgContLang->armourMath( MathRenderer::renderMath( $content, $attributes ) );
 44+ return $wgContLang->armourMath( MathRenderer::renderMath( $content, $attributes ) );
4545 }
4646
4747 static function gallery( $content, $attributes, $parser ) {

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r61913* Fix for r57997 and bug 21222: move math, gallery, pre and nowiki to a new m...tstarling07:10, 3 February 2010

Status & tagging log