Index: trunk/phase3/includes/Pager.php |
— | — | @@ -517,8 +517,6 @@ |
518 | 518 | function getNavigationBar() { |
519 | 519 | global $wgLang; |
520 | 520 | |
521 | | - if ( $this->mIsFirst && $this->mIsLast ) return ''; |
522 | | - |
523 | 521 | if( isset( $this->mNavigationBar ) ) { |
524 | 522 | return $this->mNavigationBar; |
525 | 523 | } |
— | — | @@ -600,8 +598,6 @@ |
601 | 599 | function getNavigationBar() { |
602 | 600 | global $wgLang; |
603 | 601 | |
604 | | - if ( $this->mIsFirst && $this->mIsLast ) return ''; |
605 | | - |
606 | 602 | if ( isset( $this->mNavigationBar ) ) { |
607 | 603 | return $this->mNavigationBar; |
608 | 604 | } |
Index: trunk/extensions/AbuseFilter/SpecialAbuseLog.php |
— | — | @@ -115,9 +115,8 @@ |
116 | 116 | |
117 | 117 | $pager = new AbuseLogPager( $this, $conds ); |
118 | 118 | |
119 | | - $body = Xml::tags( 'ul', null, $pager->getBody() ); |
120 | 119 | $wgOut->addHTML( $pager->getNavigationBar() . |
121 | | - $body . |
| 120 | + Xml::tags( 'ul', null, $pager->getBody() ) . |
122 | 121 | $pager->getNavigationBar() ); |
123 | 122 | } |
124 | 123 | |