From: Fomafix Date: Thu, 6 Nov 2014 12:52:25 +0000 (+0000) Subject: Fix wrong closing tag in Special:Version X-Git-Tag: 1.31.0-rc.0~13376 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=eb4527d5a434762bb2f26c5cad6f073a12c425e4;p=lhc%2Fweb%2Fwiklou.git Fix wrong closing tag in Special:Version Bug: 73081 Change-Id: I808dce238f6eab4c4202f366b0b8d3752087002c --- diff --git a/includes/specials/SpecialVersion.php b/includes/specials/SpecialVersion.php index 6b9173f6fe..f491c7703b 100644 --- a/includes/specials/SpecialVersion.php +++ b/includes/specials/SpecialVersion.php @@ -808,7 +808,7 @@ class SpecialVersion extends SpecialPage { $html .= Html::rawElement( 'td', array( 'class' => 'mw-version-ext-description' ), $description ); $html .= Html::rawElement( 'td', array( 'class' => 'mw-version-ext-authors' ), $authors ); - $html .= Html::closeElement( 'td' ); + $html .= Html::closeElement( 'tr' ); return $html; }