unlike the (# next) message in most cases.
authorAntoine Musso <hashar@users.mediawiki.org>
Tue, 27 Apr 2004 04:25:06 +0000 (04:25 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Tue, 27 Apr 2004 04:25:06 +0000 (04:25 +0000)
includes/QueryPage.php

index 68db80e..b7901ad 100644 (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 ) . "'>";