Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorC. Montero Luque <cmonteroluque@users.noreply.github.com>2016-04-27 04:19:30 +0300
committerC. Montero Luque <cmonteroluque@users.noreply.github.com>2016-04-27 04:19:30 +0300
commitd359311afc6773fc586891ad4ef22aa8f1cfde3e (patch)
tree019df27bbc4eb1b1e6001d32227db96b65f28a28
parent1c23fa5d16fe8cb853fd680a24905eb141534ca7 (diff)
parent62a35d3f7a0b904ec10b755dc27ddebef28fb2af (diff)
Merge pull request #24294 from owncloud/stable9-remove-pcntl-warning
Remove pcntl warning for 9.0.2
-rw-r--r--console.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/console.php b/console.php
index fc571b03f1e..72f961515d7 100644
--- a/console.php
+++ b/console.php
@@ -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();