Merge pull request #24294 from owncloud/stable9-remove-pcntl-warning

Remove pcntl warning for 9.0.2
This commit is contained in:
C. Montero Luque 2016-04-26 21:19:30 -04:00
commit d359311afc
1 changed files with 0 additions and 4 deletions

View File

@ -79,10 +79,6 @@ try {
exit(1);
}
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;
}
$application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest());
$application->loadCommands(new ArgvInput(), new ConsoleOutput());
$application->run();