Index: trunk/phase3/maintenance/rebuildrecentchanges.inc |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | 'rev_page=page_id' |
42 | 42 | ), $fname, |
43 | 43 | array(), // INSERT options |
44 | | - array( 'ORDER BY' => 'rev_timestamp', 'LIMIT' => 5000 ) // SELECT options |
| 44 | + array( 'ORDER BY' => 'rev_timestamp DESC', 'LIMIT' => 5000 ) // SELECT options |
45 | 45 | ); |
46 | 46 | } |
47 | 47 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -352,6 +352,8 @@ |
353 | 353 | up $wgCookiePrefix. Completes application of patch by Anders Kaseorg. |
354 | 354 | * (bug 9649) Fix RTL form alignment for Special:Movepage |
355 | 355 | * (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 |
356 | 358 | |
357 | 359 | |
358 | 360 | == Maintenance == |