Index: trunk/extensions/Renameuser/SpecialRenameuser_body.php |
— | — | @@ -302,12 +302,13 @@ |
303 | 303 | $this->tables = array( |
304 | 304 | 'image' => 'img_user_text', |
305 | 305 | 'oldimage' => 'oi_user_text', |
306 | | - 'archive' => 'ar_user_text' |
| 306 | + 'archive' => 'ar_user_text', |
| 307 | + 'revision' => 'rev_user_text' |
307 | 308 | ); |
308 | 309 | $this->tablesJob = array(); |
309 | 310 | // See if this is for large tables on large, busy, wikis |
310 | 311 | if( function_exists('wfQueriesMustScale') && wfQueriesMustScale() ) { |
311 | | - $this->tablesJob['revision'] = array('rev_user_text','rev_id'); |
| 312 | + #$this->tablesJob['revision'] = array('rev_user_text','rev_id'); |
312 | 313 | $this->tablesJob['recentchanges'] = array('rc_user_text','rc_id'); |
313 | 314 | } else { |
314 | 315 | $this->tables['revision'] = 'rev_user_text'; |