From 8cb77943fcf4231ef8b22bbee206b42d72a0a619 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 18 Nov 2005 10:15:08 +0000 Subject: [PATCH] * (bug 4014) Fix include mode for Allpages on small page sets --- RELEASE-NOTES | 1 + includes/SpecialAllpages.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.20.1