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:
authorVictor Dubiniuk <victor.dubiniuk@gmail.com>2016-04-26 21:08:33 +0300
committerVictor Dubiniuk <victor.dubiniuk@gmail.com>2016-04-26 21:08:33 +0300
commitffe561df62d34116b5b745083d793ae27449346f (patch)
treed786a1bcf9d4f43527a3695933d6a906b0c7ece0 /console.php
parent1087385cae70ce59dd100f330fae5a640ed08025 (diff)
Remove pcntl warning for now
Diffstat (limited to 'console.php')
-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();