unlike the (# next) message in most cases.

This commit is contained in:
Antoine Musso 2004-04-27 04:25:06 +00:00
parent b880e6514c
commit 7f07ad70b7

View file

@ -71,7 +71,10 @@ class QueryPage {
$top = wfShowingResults( $offset, $num);
$wgOut->addHTML( "<p>{$top}\n" );
$sl = wfViewPrevNext( $offset, $limit , $wgLang->specialPage( $sname ) );
# often disable 'next' link when we reach the end
if($num < $limit) { $atend = true; } else { $atend = false; }
$sl = wfViewPrevNext( $offset, $limit , $wgLang->specialPage( $sname ), "" ,$atend );
$wgOut->addHTML( "<br />{$sl}</p>\n" );
$s = "<ol start='" . ( $offset + 1 ) . "'>";