Index: trunk/phase3/maintenance/checkBadRedirects.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | class CheckBadRedirects extends Maintenance { |
29 | 29 | public function __construct() { |
30 | 30 | parent::__construct(); |
31 | | - $this->mDescription = "Look for bad redirects"; |
| 31 | + $this->mDescription = "Check for bad redirects"; |
32 | 32 | } |
33 | 33 | |
34 | 34 | public function execute() { |
— | — | @@ -39,8 +39,8 @@ |
40 | 40 | array( 'page_is_redirect' => 1 ) ); |
41 | 41 | |
42 | 42 | $count = $result->numRows(); |
43 | | - $this->output( "Found $count total redirects.\n" . |
44 | | - "Looking for bad redirects:\n\n" ); |
| 43 | + $this->output( "Found $count redirects.\n" . |
| 44 | + "Checking for bad redirects:\n\n" ); |
45 | 45 | |
46 | 46 | foreach ( $result as $row ) { |
47 | 47 | $title = Title::makeTitle( $row->page_namespace, $row->page_title ); |
— | — | @@ -52,7 +52,7 @@ |
53 | 53 | } |
54 | 54 | } |
55 | 55 | } |
56 | | - $this->output( "\ndone.\n" ); |
| 56 | + $this->output( "\nDone.\n" ); |
57 | 57 | } |
58 | 58 | } |
59 | 59 | |