X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Fparse.php;h=d6559657cbc28f86c5d99498483cca28b227cc94;hb=c97d773e1427a8827e3e6889547cd054c51c86e7;hp=638d7c5b2a81374bc9f8888cd2dae37bacff9288;hpb=18926a3e2a5d166d590a9cfb75a01840e7562cf3;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/parse.php b/maintenance/parse.php index 638d7c5b2a..d6559657cb 100644 --- a/maintenance/parse.php +++ b/maintenance/parse.php @@ -3,7 +3,7 @@ * Parse some wikitext. * * Wikitext can be given by stdin or using a file. The wikitext will be parsed - * using 'CLIParser' as a title. This can be overriden with --title option. + * using 'CLIParser' as a title. This can be overridden with --title option. * * Example1: * @code @@ -89,11 +89,10 @@ class CLIParser extends Maintenance { * @return string Wikitext */ protected function Wikitext() { - $php_stdin = 'php://stdin'; $input_file = $this->getArg( 0, $php_stdin ); - if ( $input_file === $php_stdin ) { + if ( $input_file === $php_stdin && !$this->mQuiet ) { $ctrl = wfIsWindows() ? 'CTRL+Z' : 'CTRL+D'; $this->error( basename( __FILE__ ) . ": warning: reading wikitext from STDIN. Press $ctrl to parse.\n" ); @@ -110,7 +109,7 @@ class CLIParser extends Maintenance { /** * Title object to use for CLI parsing. - * Default title is 'CLIParser', it can be overriden with the option + * Default title is 'CLIParser', it can be overridden with the option * --title * * @return Title