From d443de6f4a3b21ae8e11e4299e622e4b7e19abe1 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 27 Aug 2008 20:28:12 +0000 Subject: [PATCH] Make Special:Allpages/User:Foo actually work. Patch by Mormegil --- CREDITS | 1 + includes/specials/SpecialAllpages.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CREDITS b/CREDITS index 78d156b98e..b4a28daa49 100644 --- a/CREDITS +++ b/CREDITS @@ -40,6 +40,7 @@ following names for their contribution to the product. * Danny B. * Louperivois * Max Semenik +* Mormegil * RememberTheDot == Translators == diff --git a/includes/specials/SpecialAllpages.php b/includes/specials/SpecialAllpages.php index efc3dc945d..f27c12005f 100644 --- a/includes/specials/SpecialAllpages.php +++ b/includes/specials/SpecialAllpages.php @@ -276,7 +276,7 @@ class SpecialAllpages extends IncludableSpecialPage { $namespace = NS_MAIN; } else { list( $namespace, $fromKey, $from ) = $fromList; - list( $namespace, $toKey, $to ) = $toList; + list( $namespace2, $toKey, $to ) = $toList; $dbr = wfGetDB( DB_SLAVE ); $conds = array( -- 2.20.1