From: Alexandre Emsenhuber Date: Fri, 30 Dec 2011 11:37:57 +0000 (+0000) Subject: Per Krinkle, fix for r102406: use strict comparison X-Git-Tag: 1.31.0-rc.0~25678 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=276a04e37aa35e8aa3025d2d753f549e51ab4a35;p=lhc%2Fweb%2Fwiklou.git Per Krinkle, fix for r102406: use strict comparison --- 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 );