API: Remove stray $options = array(); from ApiPageSet
authorRoan Kattouw <catrope@users.mediawiki.org>
Wed, 11 Feb 2009 19:28:07 +0000 (19:28 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Wed, 11 Feb 2009 19:28:07 +0000 (19:28 +0000)
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)

includes/api/ApiPageSet.php

index 445c69e..49277d9 100644 (file)
@@ -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();