From 3b81c6615029752bfddf80dc6c097dff1ce5c424 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Fri, 30 Mar 2018 22:56:04 -0400 Subject: [PATCH] Use $argv instead of $_SERVER['argv'] --- bin/console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();