https://bugzilla.wikimedia.org/show_bug.cgi?id=73081

            Bug ID: 73081
           Summary: Special:Version generates the wrong closing tag </td>
                    for the tag <tr>
           Product: MediaWiki
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: trivial
          Priority: Unprioritized
         Component: Special pages
          Assignee: [email protected]
          Reporter: [email protected]
       Web browser: ---
   Mobile Platform: ---

[[Special:Version]] generates

  <tr></td></td></td>

instead of

  <tr></td></td></tr>


Patch: (Sorry https://tools.wmflabs.org/gerrit-patch-uploader/ does not work)

diff --git a/includes/specials/SpecialVersion.php
b/includes/specials/SpecialVersion.php
index 6b9173f..f491c77 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;
     }

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to