]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
See issue 1218: generate $argv and $argc from $_SERVER if it wasn't defined.
[friendica.git] / boot.php
index 34836a97aa6c570839577375abab5e455bea2d42..fa4f8b072ec1853c676c0f02f25a0176c1e5c75d 100644 (file)
--- a/boot.php
+++ b/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'];