Author: mediawiki-bugzilla
Description:
The Database::select() statement in maintenance/dumpLinks.php, which is passed
to $result, uses "array( 'ORDER BY page_id' )" for the $options parameter. That
parameter is supposed to be an associative array, though, the way it's now the
ORDER BY statement gets ignored.
Fix: replace it with "array( 'ORDER BY' => 'page_id' )".
Version: unspecified
Severity: minor