HTML5 fix: short tag not allowed for <td>
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 15 May 2010 23:37:15 +0000 (23:37 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 15 May 2010 23:37:15 +0000 (23:37 +0000)
includes/specials/SpecialVersion.php

index f103ef2..6336be0 100644 (file)
@@ -353,7 +353,7 @@ class SpecialVersion extends SpecialPage {
 
                if( !$this->firstExtOpened ) {
                        // Insert a spacing line
-                       $out .= '<tr class="sv-space">' . Xml::element( 'td', $opt ) . "</tr>\n";
+                       $out .= '<tr class="sv-space">' . Xml::element( 'td', $opt, '', false ) . "</tr>\n";
                }
                $this->firstExtOpened = false;