From 276a04e37aa35e8aa3025d2d753f549e51ab4a35 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 30 Dec 2011 11:37:57 +0000 Subject: [PATCH] Per Krinkle, fix for r102406: use strict comparison --- includes/specials/SpecialAllpages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialAllpages.php b/includes/specials/SpecialAllpages.php index fb87e2ae97..660e3beb0f 100644 --- a/includes/specials/SpecialAllpages.php +++ b/includes/specials/SpecialAllpages.php @@ -82,7 +82,7 @@ class SpecialAllpages extends IncludableSpecialPage { if( $par !== null ) { $this->showChunk( $namespace, $par, $to ); - } elseif( $from !== null && $to == null ) { + } elseif( $from !== null && $to === null ) { $this->showChunk( $namespace, $from, $to ); } else { $this->showToplevel( $namespace, $from, $to ); -- 2.20.1