From: Kunal Mehta Date: Thu, 18 Jul 2013 06:31:59 +0000 (-0700) Subject: Change message to say deleting "unused" accounts rather than "inactive". X-Git-Tag: 1.31.0-rc.0~19155 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=73f35bbb027f5926b0ce8f8cdfa2a138ea9fef63;p=lhc%2Fweb%2Fwiklou.git Change message to say deleting "unused" accounts rather than "inactive". Bug: 49128 Change-Id: I8f93ba581abbf6e9c83ad8ade32ea0657bde6b01 --- 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__ );