r21628 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r21627‎ | r21628 | r21629 >
Date:17:55, 26 April 2007
Author:brion
Status:old
Tags:
Comment:
* (bug 9669) Fix limit ordering for rebuildrecentchanges; broken since
converted from 1.4 to 1.5 schema
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/maintenance/rebuildrecentchanges.inc (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/rebuildrecentchanges.inc
@@ -40,7 +40,7 @@
4141 'rev_page=page_id'
4242 ), $fname,
4343 array(), // INSERT options
44 - array( 'ORDER BY' => 'rev_timestamp', 'LIMIT' => 5000 ) // SELECT options
 44+ array( 'ORDER BY' => 'rev_timestamp DESC', 'LIMIT' => 5000 ) // SELECT options
4545 );
4646 }
4747
Index: trunk/phase3/RELEASE-NOTES
@@ -352,6 +352,8 @@
353353 up $wgCookiePrefix. Completes application of patch by Anders Kaseorg.
354354 * (bug 9649) Fix RTL form alignment for Special:Movepage
355355 * (bug 9582) Members of bot group now mark edits patrolled by default
 356+* (bug 9669) Fix limit ordering for rebuildrecentchanges; broken since
 357+ converted from 1.4 to 1.5 schema
356358
357359
358360 == Maintenance ==