From: Roan Kattouw Date: Wed, 11 Feb 2009 19:28:07 +0000 (+0000) Subject: API: Remove stray $options = array(); from ApiPageSet X-Git-Tag: 1.31.0-rc.0~42930 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/?a=commitdiff_plain;h=2755b38a45e6488358ff40ad9411ab6518a5b08c;p=lhc%2Fweb%2Fwiklou.git API: Remove stray $options = array(); from ApiPageSet Previous commit message didn't mention changing ApiQueryInfo to sort $titles by page ID and to add info about missing pages in one go (the latter upon Brad Jorsch's suggestion) --- diff --git a/includes/api/ApiPageSet.php b/includes/api/ApiPageSet.php index 445c69ef85..49277d9b57 100644 --- a/includes/api/ApiPageSet.php +++ b/includes/api/ApiPageSet.php @@ -509,7 +509,6 @@ class ApiPageSet extends ApiQueryBase { $tables = array('revision', 'page'); $fields = array('rev_id', 'rev_page'); $where = array('rev_id' => $revids, 'rev_page = page_id'); - $options = array(); // Get pageIDs data from the `page` table $this->profileDBIn();