From: Ilmari Karonen Date: Wed, 2 Feb 2011 21:30:02 +0000 (+0000) Subject: followup r81408: fix option desc and year in copyright statement X-Git-Tag: 1.31.0-rc.0~32244 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=aa3357a93268a82bcd44a9218ce37a96aa3711ef;p=lhc%2Fweb%2Fwiklou.git followup r81408: fix option desc and year in copyright statement --- diff --git a/maintenance/fixDoubleRedirects.php b/maintenance/fixDoubleRedirects.php index 7f118f2ef4..e1f9a44083 100644 --- a/maintenance/fixDoubleRedirects.php +++ b/maintenance/fixDoubleRedirects.php @@ -2,7 +2,7 @@ /** * Script to fix double redirects. * - * Copyright (C) 2010 Ilmari Karonen + * Copyright (C) 2011 Ilmari Karonen * http://www.mediawiki.org/ * * This program is free software; you can redistribute it and/or modify @@ -31,7 +31,7 @@ class FixDoubleRedirects extends Maintenance { public function __construct() { parent::__construct(); $this->mDescription = "Script to fix double redirects"; - $this->addOption( 'async', 'Don\'t fix anything directly, just add queue the jobs' ); + $this->addOption( 'async', 'Don\'t fix anything directly, just queue the jobs' ); $this->addOption( 'title', 'Fix only redirects pointing to this page', false, true ); $this->addOption( 'dry-run', 'Perform a dry run, fix nothing' ); }