From facb81dff10ef6b52b6560501be3d81e803a05bd Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Mon, 29 Nov 2010 00:28:04 +0000 Subject: [PATCH] Fix spaces to tabs from r77393 --- maintenance/reassignEdits.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maintenance/reassignEdits.php b/maintenance/reassignEdits.php index b2f1fe5c48..16f9e3fa86 100644 --- a/maintenance/reassignEdits.php +++ b/maintenance/reassignEdits.php @@ -102,16 +102,16 @@ class ReassignEdits extends Maintenance { # Reassign edits $this->output( "\nReassigning current edits..." ); $dbw->update( 'revision', $this->userSpecification( $to, 'rev_user', 'rev_user_text' ), - $this->userConditions( $from, 'rev_user', 'rev_user_text' ), __METHOD__ ); + $this->userConditions( $from, 'rev_user', 'rev_user_text' ), __METHOD__ ); $this->output( "done.\nReassigning deleted edits..." ); $dbw->update( 'archive', $this->userSpecification( $to, 'ar_user', 'ar_user_text' ), - $this->userConditions( $from, 'ar_user', 'ar_user_text' ), __METHOD__ ); + $this->userConditions( $from, 'ar_user', 'ar_user_text' ), __METHOD__ ); $this->output( "done.\n" ); # Update recent changes if required if ( $rc ) { $this->output( "Updating recent changes..." ); $dbw->update( 'recentchanges', $this->userSpecification( $to, 'rc_user', 'rc_user_text' ), - $this->userConditions( $from, 'rc_user', 'rc_user_text' ), __METHOD__ ); + $this->userConditions( $from, 'rc_user', 'rc_user_text' ), __METHOD__ ); $this->output( "done.\n" ); } } -- 2.20.1