Index: trunk/extensions/Renameuser/SpecialRenameuser_body.php |
— | — | @@ -385,9 +385,11 @@ |
386 | 386 | if( User::edits($this->uid) > RENAMEUSER_CONTRIBJOB ) { |
387 | 387 | $this->tablesJob['revision'] = array('rev_user_text','rev_user','rev_timestamp'); |
388 | 388 | $this->tablesJob['archive'] = array('ar_user_text','ar_user','ar_timestamp'); |
| 389 | + $this->tablesJob['logging'] = array('log_user_text','log_user','log_timestamp'); |
389 | 390 | } else { |
390 | 391 | $this->tables['revision'] = array('rev_user_text','rev_user'); |
391 | 392 | $this->tables['archive'] = array('ar_user_text','ar_user'); |
| 393 | + $this->tables['logging'] = array('log_user_text','log_user'); |
392 | 394 | } |
393 | 395 | // Recent changes is pretty hot, deadlocks occur if done all at once |
394 | 396 | if( wfQueriesMustScale() ) { |