* (bug 4014) Fix include mode for Allpages on small page sets
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 18 Nov 2005 10:15:08 +0000 (10:15 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 18 Nov 2005 10:15:08 +0000 (10:15 +0000)
RELEASE-NOTES
includes/SpecialAllpages.php

index 4925227..8c12d4f 100644 (file)
@@ -239,6 +239,7 @@ fully support the editing toolbar, but was found to be too confusing.
   unclear language in the spec. Now using the URL, same as the permalink,
   which someone else will probably whine about because it's not 'perma'
   enough or something.
+* (bug 4014) Fix include mode for Allpages on small page sets
 
 
 === Caveats ===
index d2ef504..d7d915d 100644 (file)
@@ -150,7 +150,7 @@ function showToplevel ( $namespace = NS_MAIN, $including = false ) {
        // If there are only two or less sections, don't even display them.
        // Instead, display the first section directly.
        if( count( $lines ) <= 2 ) {
-               $this->showChunk( $namespace, '', false, $including );
+               $this->showChunk( $namespace, '', $including );
                return;
        }