From: Brion Vibber Date: Fri, 18 Nov 2005 10:15:08 +0000 (+0000) Subject: * (bug 4014) Fix include mode for Allpages on small page sets X-Git-Tag: 1.6.0~1158 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=8cb77943fcf4231ef8b22bbee206b42d72a0a619;p=lhc%2Fweb%2Fwiklou.git * (bug 4014) Fix include mode for Allpages on small page sets --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 4925227525..8c12d4f62f 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 === diff --git a/includes/SpecialAllpages.php b/includes/SpecialAllpages.php index d2ef504248..d7d915dc34 100644 --- a/includes/SpecialAllpages.php +++ b/includes/SpecialAllpages.php @@ -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; }