Index: trunk/phase3/includes/specials/SpecialAllmessages.php |
— | — | @@ -66,7 +66,7 @@ |
67 | 67 | </tr> |
68 | 68 | <tr>\n |
69 | 69 | <td class='mw-label'>" . |
70 | | - Xml::label( wfMsg( 'allmessages-filter' ), 'mw-allmessages-form-filter' ) . |
| 70 | + Xml::label( wfMsg( 'allmessages-filter' ), 'filter' ) . |
71 | 71 | "</td>\n |
72 | 72 | <td class='mw-input'>" . |
73 | 73 | Xml::radioLabel( wfMsg( 'allmessages-filter-unmodified' ), |
— | — | @@ -267,9 +267,20 @@ |
268 | 268 | } |
269 | 269 | |
270 | 270 | function getStartBody() { |
271 | | - return "<table border=\"1\" class=\"TablePager\" style=\"width:100%;\" id=\"allmessagestable\"><thead>\n<tr>" . |
272 | | - "<th rowspan=\"2\">" . wfMsg('allmessagesname') . "</th><th>" . wfMsg('allmessagesdefault') . |
273 | | - "</tr>\n<tr><th>" . wfMsg('allmessagescurrent') . "</th></tr>\n"; |
| 271 | + return Xml::openElement( 'table', array( 'class' => 'TablePager', 'id' => 'mw-allmessagestable' ) ) . "\n" . |
| 272 | + "<tr> |
| 273 | + <th rowspan=\"2\">" . |
| 274 | + wfMsg( 'allmessagesname' ) . " |
| 275 | + </th> |
| 276 | + <th>" . |
| 277 | + wfMsg( 'allmessagesdefault' ) . |
| 278 | + "</th> |
| 279 | + </tr>\n |
| 280 | + <tr> |
| 281 | + <th>" . |
| 282 | + wfMsg( 'allmessagescurrent' ) . |
| 283 | + "</th> |
| 284 | + </tr>\n"; |
274 | 285 | } |
275 | 286 | |
276 | 287 | function formatValue( $field , $value ){ |