From 73f35bbb027f5926b0ce8f8cdfa2a138ea9fef63 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Wed, 17 Jul 2013 23:31:59 -0700 Subject: [PATCH] Change message to say deleting "unused" accounts rather than "inactive". Bug: 49128 Change-Id: I8f93ba581abbf6e9c83ad8ade32ea0657bde6b01 --- maintenance/removeUnusedAccounts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/removeUnusedAccounts.php b/maintenance/removeUnusedAccounts.php index 24c66b1f09..16cb17ab72 100644 --- a/maintenance/removeUnusedAccounts.php +++ b/maintenance/removeUnusedAccounts.php @@ -74,7 +74,7 @@ class RemoveUnusedAccounts extends Maintenance { # If required, go back and delete each marked account if ( $count > 0 && $this->hasOption( 'delete' ) ) { - $this->output( "\nDeleting inactive accounts..." ); + $this->output( "\nDeleting unused accounts..." ); $dbw = wfGetDB( DB_MASTER ); $dbw->delete( 'user', array( 'user_id' => $del ), __METHOD__ ); $dbw->delete( 'user_groups', array( 'ug_user' => $del ), __METHOD__ ); -- 2.20.1