Index: trunk/extensions/CodeReview/ui/CodeRevisionListView.php |
— | — | @@ -43,11 +43,12 @@ |
44 | 44 | $wgUser->isAllowed( 'codereview-add-tag' ); |
45 | 45 | |
46 | 46 | $navBar = $pager->getNavigationBar(); |
| 47 | + $limitForm = $pager->getLimitForm(); |
47 | 48 | |
48 | 49 | $wgOut->addHTML( |
49 | 50 | '<table><tr><td>' . |
50 | 51 | $navBar . |
51 | | - $pager->getLimitForm() . |
| 52 | + $limitForm . |
52 | 53 | '</td><td style="padding-left: 2em;">' . |
53 | 54 | ' <strong>' . wfMsgHtml( 'code-rev-total', $revCount ) . '</strong>' . |
54 | 55 | '</td></tr></table>' . |
— | — | @@ -55,6 +56,7 @@ |
56 | 57 | array( 'action' => $pager->getTitle()->getLocalURL(), 'method' => 'post' ) |
57 | 58 | ) . |
58 | 59 | $pager->getBody() . |
| 60 | + $limitForm . |
59 | 61 | $navBar . |
60 | 62 | ( $this->batchForm ? $this->buildBatchInterface( $pager ) : "" ) . |
61 | 63 | Xml::closeElement( 'form' ) |