From eb4527d5a434762bb2f26c5cad6f073a12c425e4 Mon Sep 17 00:00:00 2001 From: Fomafix Date: Thu, 6 Nov 2014 12:52:25 +0000 Subject: [PATCH] Fix wrong closing tag in Special:Version Bug: 73081 Change-Id: I808dce238f6eab4c4202f366b0b8d3752087002c --- includes/specials/SpecialVersion.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1