See issue 1218: generate $argv and $argc from $_SERVER if it wasn't defined.
This commit is contained in:
8
boot.php
8
boot.php
@@ -2388,3 +2388,11 @@ if(!function_exists('exif_imagetype')) {
|
||||
return($size[2]);
|
||||
}
|
||||
}
|
||||
|
||||
// See https://github.com/friendica/friendica/issues/1218
|
||||
// Try to get the values for $argv and $argc via the $_SERVER array
|
||||
if (!isset($argv) && array_key_exists('argv', $_SERVER))
|
||||
$argv = $_SERVER['argv'];
|
||||
|
||||
if (!isset($argc) && array_key_exists('argc', $_SERVER))
|
||||
$argv = $_SERVER['argc'];
|
||||
|
||||
Reference in New Issue
Block a user