Change message to say deleting "unused" accounts rather than "inactive".
authorKunal Mehta <legoktm@gmail.com>
Thu, 18 Jul 2013 06:31:59 +0000 (23:31 -0700)
committerYuvipanda <yuvipanda@gmail.com>
Fri, 19 Jul 2013 22:27:20 +0000 (22:27 +0000)
Bug: 49128
Change-Id: I8f93ba581abbf6e9c83ad8ade32ea0657bde6b01

maintenance/removeUnusedAccounts.php

index 24c66b1..16cb17a 100644 (file)
@@ -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__ );