Index: trunk/phase3/maintenance/rebuildrecentchanges.php |
— | — | @@ -137,10 +137,13 @@ |
138 | 138 | |
139 | 139 | $dbw->update( 'recentchanges', |
140 | 140 | array( |
141 | | - 'rc_old_len' => $lastSize, |
142 | | - 'rc_new_len' => $size, |
| 141 | + 'rc_last_oldid' => $lastOldId, |
| 142 | + 'rc_new' => $new, |
| 143 | + 'rc_type' => $new, |
| 144 | + 'rc_old_len' => $lastSize, |
| 145 | + 'rc_new_len' => $size, |
143 | 146 | ), array( |
144 | | - 'rc_cur_id' => $lastCurId, |
| 147 | + 'rc_cur_id' => $lastCurId, |
145 | 148 | 'rc_this_oldid' => $obj->rc_this_oldid, |
146 | 149 | ), |
147 | 150 | __METHOD__ |