From 4632c4f618a7ed225564f4c41f47de0186799db8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 27 Apr 2017 18:22:31 -0700 Subject: [PATCH] Fix help text for --d on shell.php 1 is stderr, not 0 Change-Id: Iaee4ffd5767f8ae693e8ef19371ce38fe6bd1817 --- maintenance/shell.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ); } -- 2.20.1