Fix help for --only: override doesn't work with CamelCase
See I725d07397cfa6e61e0644a9a40635d608f6be98d Change-Id: I51320f5b2ae4335271bda53ce523c79328ff8d83
This commit is contained in:
parent
5c5fb511c7
commit
012c44fd15
1 changed files with 3 additions and 1 deletions
|
|
@ -33,7 +33,9 @@ class UpdateSpecialPages extends Maintenance {
|
|||
public function __construct() {
|
||||
parent::__construct();
|
||||
$this->addOption( 'list', 'List special page names' );
|
||||
$this->addOption( 'only', 'Only update "page". Ex: --only=BrokenRedirects', false, true );
|
||||
$this->addOption( 'only', 'Only update "page"; case sensitive, ' .
|
||||
'check correct case by calling this script with --list or on ' .
|
||||
'includes/QueryPage.php. Ex: --only=BrokenRedirects', false, true );
|
||||
$this->addOption( 'override', 'Also update pages that have updates disabled' );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue