Index: trunk/extensions/SemanticMediaWiki/includes/queryprinters/SMW_QP_Table.php |
— | — | @@ -67,7 +67,6 @@ |
68 | 68 | |
69 | 69 | $headers = '<tr>' . implode( "\n", $headers ) . '</tr>'; |
70 | 70 | |
71 | | - // MW 1.17 and earlier do not accept thead while later versions require it. |
72 | 71 | if ( $outputmode == SMW_OUTPUT_HTML ) { |
73 | 72 | $headers = '<thead>' . $headers . '</thead>'; |
74 | 73 | } |
— | — | @@ -77,7 +76,6 @@ |
78 | 77 | |
79 | 78 | $tableRows = implode( "\n", $tableRows ); |
80 | 79 | |
81 | | - // MW 1.17 and earlier do not accept thead while later versions require it. |
82 | 80 | if ( $outputmode == SMW_OUTPUT_HTML ) { |
83 | 81 | $tableRows = '<tbody>' . $tableRows . '</tbody>'; |
84 | 82 | } |