Per Krinkle, fix for r102406: use strict comparison
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Fri, 30 Dec 2011 11:37:57 +0000 (11:37 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Fri, 30 Dec 2011 11:37:57 +0000 (11:37 +0000)
includes/specials/SpecialAllpages.php

index fb87e2a..660e3be 100644 (file)
@@ -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 );