Fix help for --only: override doesn't work with CamelCase
authorNemo bis <federicoleva@tiscali.it>
Thu, 15 Aug 2013 21:47:33 +0000 (23:47 +0200)
committerNemo bis <federicoleva@tiscali.it>
Sat, 17 Aug 2013 11:35:30 +0000 (13:35 +0200)
See I725d07397cfa6e61e0644a9a40635d608f6be98d

Change-Id: I51320f5b2ae4335271bda53ce523c79328ff8d83

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' );
        }