From: Brion Vibber Date: Fri, 28 Apr 2017 01:22:31 +0000 (-0700) Subject: Fix help text for --d on shell.php X-Git-Tag: 1.31.0-rc.0~3403 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=4632c4f618a7ed225564f4c41f47de0186799db8;p=lhc%2Fweb%2Fwiklou.git Fix help text for --d on shell.php 1 is stderr, not 0 Change-Id: Iaee4ffd5767f8ae693e8ef19371ce38fe6bd1817 --- diff --git a/maintenance/shell.php b/maintenance/shell.php index 9f2306fc3e..5df5b54f87 100644 --- a/maintenance/shell.php +++ b/maintenance/shell.php @@ -49,8 +49,8 @@ class MediaWikiShell extends Maintenance { parent::__construct(); $this->addOption( 'd', 'For back compatibility with eval.php. ' . - '0 send debug to stderr. ' . - 'With 1 additionally initialize database with debugging ', + '1 send debug to stderr. ' . + 'With 2 additionally initialize database with debugging ', false, true ); }