r52337 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r52336‎ | r52337 | r52338 >
Date:02:04, 24 June 2009
Author:aaron
Status:deferred
Tags:
Comment:
Handle log_user_text (bug 19359)
Modified paths:
  • /trunk/extensions/Renameuser/SpecialRenameuser_body.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Renameuser/SpecialRenameuser_body.php
@@ -385,9 +385,11 @@
386386 if( User::edits($this->uid) > RENAMEUSER_CONTRIBJOB ) {
387387 $this->tablesJob['revision'] = array('rev_user_text','rev_user','rev_timestamp');
388388 $this->tablesJob['archive'] = array('ar_user_text','ar_user','ar_timestamp');
 389+ $this->tablesJob['logging'] = array('log_user_text','log_user','log_timestamp');
389390 } else {
390391 $this->tables['revision'] = array('rev_user_text','rev_user');
391392 $this->tables['archive'] = array('ar_user_text','ar_user');
 393+ $this->tables['logging'] = array('log_user_text','log_user');
392394 }
393395 // Recent changes is pretty hot, deadlocks occur if done all at once
394396 if( wfQueriesMustScale() ) {

Status & tagging log