mirror of
https://github.com/friendica/friendica
synced 2025-04-26 21:50:11 +00:00
See issue 1218: generate $argv and $argc from $_SERVER if it wasn't defined.
This commit is contained in:
parent
8c8ffdf999
commit
38a45d325f
3 changed files with 15 additions and 6 deletions
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'];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue