r77413 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r77412‎ | r77413 | r77414 >
Date:00:28, 29 November 2010
Author:reedy
Status:ok
Tags:
Comment:
Fix spaces to tabs from r77393
Modified paths:
  • /trunk/phase3/maintenance/reassignEdits.php (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/reassignEdits.php
@@ -102,16 +102,16 @@
103103 # Reassign edits
104104 $this->output( "\nReassigning current edits..." );
105105 $dbw->update( 'revision', $this->userSpecification( $to, 'rev_user', 'rev_user_text' ),
106 - $this->userConditions( $from, 'rev_user', 'rev_user_text' ), __METHOD__ );
 106+ $this->userConditions( $from, 'rev_user', 'rev_user_text' ), __METHOD__ );
107107 $this->output( "done.\nReassigning deleted edits..." );
108108 $dbw->update( 'archive', $this->userSpecification( $to, 'ar_user', 'ar_user_text' ),
109 - $this->userConditions( $from, 'ar_user', 'ar_user_text' ), __METHOD__ );
 109+ $this->userConditions( $from, 'ar_user', 'ar_user_text' ), __METHOD__ );
110110 $this->output( "done.\n" );
111111 # Update recent changes if required
112112 if ( $rc ) {
113113 $this->output( "Updating recent changes..." );
114114 $dbw->update( 'recentchanges', $this->userSpecification( $to, 'rc_user', 'rc_user_text' ),
115 - $this->userConditions( $from, 'rc_user', 'rc_user_text' ), __METHOD__ );
 115+ $this->userConditions( $from, 'rc_user', 'rc_user_text' ), __METHOD__ );
116116 $this->output( "done.\n" );
117117 }
118118 }

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r77393Remove some unused variables and globalsreedy16:13, 28 November 2010

Status & tagging log