Fix wrong closing tag in Special:Version
authorFomafix <fomafix@googlemail.com>
Thu, 6 Nov 2014 12:52:25 +0000 (12:52 +0000)
committerNikerabbit <niklas.laxstrom@gmail.com>
Thu, 6 Nov 2014 14:30:23 +0000 (14:30 +0000)
Bug: 73081
Change-Id: I808dce238f6eab4c4202f366b0b8d3752087002c

includes/specials/SpecialVersion.php

index 6b9173f..f491c77 100644 (file)
@@ -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;
        }