Index: trunk/phase3/includes/SpecialAllpages.php |
— | — | @@ -270,6 +270,7 @@ |
271 | 271 | $sk->makeKnownLink( $wgContLang->specialPage( "Allpages" ), |
272 | 272 | wfMsgHtml ( 'allpages' ) ); |
273 | 273 | if ( isset($dbr) && $dbr && ($n == $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) { |
| 274 | + $t = Title::MakeTitle( $s->page_namespace, $s->page_title ); |
274 | 275 | $self = SpecialPage::getTitleFor( 'Allpages' ); |
275 | 276 | $q = 'from=' . $t->getPartialUrl() . ( $namespace ? '&namespace=' . $namespace : '' ); |
276 | 277 | $nextLink = $sk->makeKnownLinkObj( $self, wfMsgHtml( 'nextpage', $t->getText() ), $q ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -266,6 +266,8 @@ |
267 | 267 | * (bug 8148) Handle non-removable output buffers gracefully when cleaning |
268 | 268 | buffers for HTTP 304 responses, StreamFile, and Special:Export. |
269 | 269 | Duplicated code merged into wfResetOutputBuffers() and wfClearOutputBuffers() |
| 270 | +* Special:AllPages : 'next page' link now point to the first title of the next |
| 271 | + chunk instead of pointing to the last title of current chunk. |
270 | 272 | |
271 | 273 | |
272 | 274 | == Languages updated == |