Merge "Fix help for --only: override doesn't work with CamelCase"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Sun, 18 Aug 2013 08:00:46 +0000 (08:00 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Sun, 18 Aug 2013 08:00:46 +0000 (08:00 +0000)
maintenance/updateSpecialPages.php

index 181c222..ffb20f5 100644 (file)
@@ -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' );
        }