Merge "Allow users to block the user that blocked them."
[lhc/web/wiklou.git] / maintenance / resetUserEmail.php
index f59ce6c..771d19b 100644 (file)
@@ -65,8 +65,9 @@ class ResetUserEmail extends Maintenance {
                        // Kick whomever is currently controlling the account off
                        $user->setPassword( PasswordFactory::generateRandomPasswordString( 128 ) );
                }
+               $this->output( "Done!\n" );
        }
 }
 
-$maintClass = 'ResetUserEmail';
+$maintClass = ResetUserEmail::class;
 require_once RUN_MAINTENANCE_IF_MAIN;