From: Chad Horohoe Date: Sun, 5 Dec 2010 19:34:40 +0000 (+0000) Subject: Fix copy+paste error from r77778 X-Git-Tag: 1.31.0-rc.0~33541 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=c169c8584ef8e043a40b8f9f6052db3e5937dc00;p=lhc%2Fweb%2Fwiklou.git Fix copy+paste error from r77778 --- 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__