Merge pull request #4718 from MrPetovan/bug/fix-console-url-argument

Console: Use $argv instead of $_SERVER['argv']
This commit is contained in:
Michael Vogel 2018-03-31 06:02:23 +02:00 committed by GitHub
commit 4724c7de72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,4 +6,4 @@ include_once dirname(__DIR__) . '/boot.php';
$a = new Friendica\App(dirname(__DIR__));
\Friendica\BaseObject::setApp($a);
(new Friendica\Core\Console())->execute();
(new Friendica\Core\Console($argv))->execute();