Maintenance.php: Fix mwdebug error
authorTheSandDoctor <majorjohn1@mail.com>
Mon, 23 Sep 2019 17:24:19 +0000 (10:24 -0700)
committerTheSandDoctor <majorjohn1@mail.com>
Mon, 23 Sep 2019 17:24:19 +0000 (10:24 -0700)
commitd6f4189088fa35a5977357b8d47244b73d29ef86
treebf564399fa2331f70e75cfdae13d082cd8cfed7e
parent82bd6b026ef6ecb7f2fe15acaa40c608680dfff1
Maintenance.php: Fix mwdebug error

Resolve error with showJobs.php --mwdebug option. Previously, it displayed an error if not followed by "=1".
This was resolved by changing
$this->addOption( 'mwdebug', 'Enable built-in MediaWiki development settings', false, true );
to
$this->addOption( 'mwdebug', 'Enable built-in MediaWiki development settings', false, false );

Bug: T233257
Change-Id: I322fa539a302c2726fffd2420f7f56aec476b32b
maintenance/Maintenance.php