From f629ef2584c2b0417b959a7dda03ccab0d94906e Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Wed, 18 Feb 2009 05:29:11 +0000 Subject: [PATCH] Fix logic error from bad casing --- includes/api/ApiPageSet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiPageSet.php b/includes/api/ApiPageSet.php index 49277d9b57..2bb387ca61 100644 --- a/includes/api/ApiPageSet.php +++ b/includes/api/ApiPageSet.php @@ -501,7 +501,7 @@ class ApiPageSet extends ApiQueryBase { if(!count($revids)) return; - $revIDs = array_map('intval', $revIDs); // paranoia + $revids = array_map('intval', $revids); // paranoia $db = $this->getDB(); $pageids = array(); $remaining = array_flip($revids); -- 2.20.1