From: Rob Church Date: Mon, 21 Aug 2006 14:11:58 +0000 (+0000) Subject: (bug 7085) Fix regression introduced in r16124 X-Git-Tag: 1.31.0-rc.0~55933 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/?a=commitdiff_plain;h=4ff2d309e419b63d7f258ea4a53584a06adfd85b;p=lhc%2Fweb%2Fwiklou.git (bug 7085) Fix regression introduced in r16124 --- diff --git a/includes/SpecialAllpages.php b/includes/SpecialAllpages.php index 891ae459b4..08cea926e9 100644 --- a/includes/SpecialAllpages.php +++ b/includes/SpecialAllpages.php @@ -277,7 +277,7 @@ function showChunk( $namespace = NS_MAIN, $from, $including = false ) { wfMsgHtml ( 'allpages' ) ); if ( isset($dbr) && $dbr && ($n == $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) { $self = Title::makeTitle( NS_SPECIAL, 'Allpages' ); - $q = 'from=' . $t->getPrefixedUrl() . ( $namespace ? '&namespace=' . $namespace : '' ); + $q = 'from=' . $t->getPartialUrl() . ( $namespace ? '&namespace=' . $namespace : '' ); $out2 .= ' | ' . $sk->makeKnownLinkObj( $self, wfMsgHtml( 'nextpage', $t->getText() ), $q ); } $out2 .= "
";