See issue 1218: generate $argv and $argc from $_SERVER if it wasn't defined.

This commit is contained in:
Michael Vogel 2015-01-02 00:01:17 +01:00
parent 8c8ffdf999
commit 38a45d325f
3 changed files with 15 additions and 6 deletions

View file

@ -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'];