From cef70327a9e82544a952490c2276916ab2747465 Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Mon, 28 Mar 2011 03:38:43 +0000 Subject: [PATCH] Followup r81928, make proper use of $this->output instead of echo. --- maintenance/resetUserTokens.php | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/maintenance/resetUserTokens.php b/maintenance/resetUserTokens.php index 52407f4d4d..a1c4eaeb59 100644 --- a/maintenance/resetUserTokens.php +++ b/maintenance/resetUserTokens.php @@ -30,21 +30,16 @@ class ResetUserTokens extends Maintenance { parent::__construct(); $this->mDescription = "Reset the user_token of all users on the wiki. Note that this may log some of them out."; $this->addOption( 'nowarn', "Hides the 5 seconds warning", false, false ); - $this->addOption( 'quiet', "Do not print what is happening", false, false ); } public function execute() { - $nowarn = $this->getOption( 'nowarn' ); - $quiet = $this->getOption( 'quiet' ); - if ( !$nowarn ) { - echo <<getOption( 'nowarn' ) ) { + $this->output( "The script is about to reset the user_token for ALL USERS in the database.\n" ); + $this->output( "This may log some of them out and is not necessary unless you believe your\n" ); + $this->output( "user table has been compromised.\n" ); + $this->output( "\n" ); + $this->output( "Abort with control-c in the next five seconds (skip this countdown with --nowarn) ... " ); wfCountDown( 5 ); } @@ -61,17 +56,13 @@ WARN; $username = $user->getName(); - if ( !$quiet ) { - echo "Resetting user_token for $username: "; - } + $this->output( "Resetting user_token for $username: " ); // Change value $user->setToken(); $user->saveSettings(); - if ( !$quiet ) { - echo " OK\n"; - } + $this->output( " OK\n" ); } -- 2.20.1