Index: trunk/extensions/CodeReview/ui/CodeCommentsListView.php |
— | — | @@ -12,11 +12,12 @@ |
13 | 13 | function execute() { |
14 | 14 | global $wgOut; |
15 | 15 | $pager = $this->getPager(); |
| 16 | + $limitForm = $pager->getLimitForm(); |
16 | 17 | $wgOut->addHTML( |
17 | 18 | $pager->getNavigationBar() . |
18 | | - $pager->getLimitForm() . |
| 19 | + $limitForm . |
19 | 20 | $pager->getBody() . |
20 | | - $pager->getLimitForm() . |
| 21 | + $limitForm . |
21 | 22 | $pager->getNavigationBar() |
22 | 23 | ); |
23 | 24 | } |
Index: trunk/extensions/CodeReview/ui/CodeStatusChangeListView.php |
— | — | @@ -12,11 +12,12 @@ |
13 | 13 | function execute() { |
14 | 14 | global $wgOut; |
15 | 15 | $pager = $this->getPager(); |
| 16 | + $limitForm = $pager->getLimitForm(); |
16 | 17 | $wgOut->addHTML( |
17 | 18 | $pager->getNavigationBar() . |
18 | | - $pager->getLimitForm() . |
| 19 | + $limitForm . |
19 | 20 | $pager->getBody() . |
20 | | - $pager->getLimitForm() . |
| 21 | + $limitForm . |
21 | 22 | $pager->getNavigationBar() |
22 | 23 | ); |
23 | 24 | } |