From: Hypolite Petovan Date: Sat, 31 Mar 2018 02:56:04 +0000 (-0400) Subject: Use $argv instead of $_SERVER['argv'] X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3b81c6615029752bfddf80dc6c097dff1ce5c424;hp=8a2d41e53fa10109affa39b303f2c5dffd67cc05;p=friendica.git Use $argv instead of $_SERVER['argv'] --- diff --git a/bin/console.php b/bin/console.php index 90e4be3928..9c25279d37 100755 --- a/bin/console.php +++ b/bin/console.php @@ -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();