Index: trunk/extensions/CloseWikis/CloseWikis.list.php |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | |
37 | 37 | $this->setHeaders(); |
38 | 38 | $wgOut->addWikiMsg( 'closewikis-list-intro' ); |
39 | | - $wgOut->addHTML( '<table class="TablePager" style="width: 100%"><tr>' ); |
| 39 | + $wgOut->addHTML( '<table class="mw-datatable TablePager" style="width: 100%"><tr>' ); |
40 | 40 | foreach( array( 'wiki', 'by', 'timestamp', 'dispreason' ) as $column ) |
41 | 41 | $wgOut->addHTML( '<th>' . wfMsgExt( "closewikis-list-header-{$column}", 'parseinline' ) . '</th>' ); |
42 | 42 | $wgOut->addHTML( '</tr>' ); |
Index: trunk/extensions/SecurePoll/includes/pages/TranslatePage.php |
— | — | @@ -68,7 +68,7 @@ |
69 | 69 | $action = $this->getTitle( $secondary )->getLocalUrl( 'action=submit' ); |
70 | 70 | $s = |
71 | 71 | Xml::openElement( 'form', array( 'method' => 'post', 'action' => $action ) ) . |
72 | | - '<table class="TablePager securepoll-trans-table">' . |
| 72 | + '<table class="mw-datatable TablePager securepoll-trans-table">' . |
73 | 73 | '<col class="securepoll-col-trans-id" width="1*"/>' . |
74 | 74 | '<col class="securepoll-col-primary" width="30%"/>' . |
75 | 75 | '<col class="securepoll-col-secondary"/>' . |
Index: trunk/extensions/SecurePoll/includes/pages/DetailsPage.php |
— | — | @@ -50,7 +50,7 @@ |
51 | 51 | 'securepoll-details-title', $this->voteId ) ); |
52 | 52 | |
53 | 53 | $wgOut->addHTML( |
54 | | - '<table class="TablePager">' . |
| 54 | + '<table class="mw-datatable TablePager">' . |
55 | 55 | $this->detailEntry( 'securepoll-header-id', $row->vote_id ) . |
56 | 56 | $this->detailEntry( 'securepoll-header-timestamp', $row->vote_timestamp ) . |
57 | 57 | $this->detailEntry( 'securepoll-header-voter-name', $row->voter_name ) . |
— | — | @@ -66,7 +66,7 @@ |
67 | 67 | |
68 | 68 | # Show voter properties |
69 | 69 | $wgOut->addHTML( '<h2>' . wfMsgHTML( 'securepoll-voter-properties' ) . "</h2>\n" ); |
70 | | - $wgOut->addHTML( '<table class="TablePager">' ); |
| 70 | + $wgOut->addHTML( '<table class="mw-datatable TablePager">' ); |
71 | 71 | $props = SecurePoll_Voter::decodeProperties( $row->voter_properties ); |
72 | 72 | foreach ( $props as $name => $value ) { |
73 | 73 | if ( is_array( $value ) ) { |
— | — | @@ -89,7 +89,7 @@ |
90 | 90 | $res = $db->query( $sql, __METHOD__ ); |
91 | 91 | if ( $res->numRows() ) { |
92 | 92 | $wgOut->addHTML( '<h2>' . wfMsgHTML( 'securepoll-cookie-dup-list' ) . '</h2>' ); |
93 | | - $wgOut->addHTML( '<table class="TablePager">' ); |
| 93 | + $wgOut->addHTML( '<table class="mw-datatable TablePager">' ); |
94 | 94 | foreach ( $res as $row ) { |
95 | 95 | $voter = $this->context->getVoter( $row->voter ); |
96 | 96 | $wgOut->addHTML( |