From c169c8584ef8e043a40b8f9f6052db3e5937dc00 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sun, 5 Dec 2010 19:34:40 +0000 Subject: [PATCH] Fix copy+paste error from r77778 --- maintenance/rebuildrecentchanges.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/maintenance/rebuildrecentchanges.php b/maintenance/rebuildrecentchanges.php index f627892263..3a1b9e1a8e 100644 --- a/maintenance/rebuildrecentchanges.php +++ b/maintenance/rebuildrecentchanges.php @@ -137,10 +137,13 @@ class RebuildRecentchanges extends Maintenance { $dbw->update( 'recentchanges', array( - 'rc_old_len' => $lastSize, - 'rc_new_len' => $size, + 'rc_last_oldid' => $lastOldId, + 'rc_new' => $new, + 'rc_type' => $new, + 'rc_old_len' => $lastSize, + 'rc_new_len' => $size, ), array( - 'rc_cur_id' => $lastCurId, + 'rc_cur_id' => $lastCurId, 'rc_this_oldid' => $obj->rc_this_oldid, ), __METHOD__ -- 2.20.1