Last modified: 2007-04-17 14:23:26 UTC
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' )".
Thanks, fixed in r21325