Merge pull request #22639 from owncloud/dont-show-pcntl-warning

Don't show PCNTL warning if --no-warnings is passed
This commit is contained in:
Morris Jobke 2016-02-25 12:54:48 +01:00
commit d64c20b191
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ try {
exit(1); exit(1);
} }
if (!function_exists('pcntl_signal')) { if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) {
echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL; echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL;
} }