Apply ^demon's patch. Reason was: fixes mismatched <tbody> issue from when child...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 23 Jul 2009 18:00:32 +0000 (18:00 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 23 Jul 2009 18:00:32 +0000 (18:00 +0000)
includes/specials/SpecialAllmessages.php

index 7136df1..3b4c84e 100644 (file)
@@ -268,7 +268,7 @@ class AllmessagesTablePager extends TablePager {
 
        function getStartBody() {
                return Xml::openElement( 'table', array( 'class' => 'TablePager', 'id' => 'mw-allmessagestable' ) ) . "\n" .
-                       "<tr>
+                       "<thead><tr>
                                <th rowspan=\"2\">" .
                                        wfMsg( 'allmessagesname' ) . "
                                </th>
@@ -280,7 +280,7 @@ class AllmessagesTablePager extends TablePager {
                                <th>" .
                                        wfMsg( 'allmessagescurrent' ) .
                                "</th>
-                       </tr>\n";
+                       </tr></thead><tbody>\n";
        }
 
        function formatValue( $field , $value ){