From: Nemo bis Date: Thu, 15 Aug 2013 21:47:33 +0000 (+0200) Subject: Fix help for --only: override doesn't work with CamelCase X-Git-Tag: 1.31.0-rc.0~18950^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=012c44fd15feaafeb18d874349edaa26a959b871;p=lhc%2Fweb%2Fwiklou.git Fix help for --only: override doesn't work with CamelCase See I725d07397cfa6e61e0644a9a40635d608f6be98d Change-Id: I51320f5b2ae4335271bda53ce523c79328ff8d83 --- diff --git a/maintenance/updateSpecialPages.php b/maintenance/updateSpecialPages.php index 181c22229d..ffb20f5748 100644 --- a/maintenance/updateSpecialPages.php +++ b/maintenance/updateSpecialPages.php @@ -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' ); }