From 5e3b7c090841db424518a18b4100ddca23be65e3 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 17 Mar 2011 09:05:34 +0000 Subject: [PATCH] Update output language. --- maintenance/checkBadRedirects.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maintenance/checkBadRedirects.php b/maintenance/checkBadRedirects.php index 52bfa65acc..bac2ff69a0 100644 --- a/maintenance/checkBadRedirects.php +++ b/maintenance/checkBadRedirects.php @@ -27,7 +27,7 @@ require_once( dirname( __FILE__ ) . '/Maintenance.php' ); class CheckBadRedirects extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Look for bad redirects"; + $this->mDescription = "Check for bad redirects"; } public function execute() { @@ -39,8 +39,8 @@ class CheckBadRedirects extends Maintenance { array( 'page_is_redirect' => 1 ) ); $count = $result->numRows(); - $this->output( "Found $count total redirects.\n" . - "Looking for bad redirects:\n\n" ); + $this->output( "Found $count redirects.\n" . + "Checking for bad redirects:\n\n" ); foreach ( $result as $row ) { $title = Title::makeTitle( $row->page_namespace, $row->page_title ); @@ -52,7 +52,7 @@ class CheckBadRedirects extends Maintenance { } } } - $this->output( "\ndone.\n" ); + $this->output( "\nDone.\n" ); } } -- 2.20.1