X-Git-Url: https://git.cweiske.de/bdrem.git/blobdiff_plain/64fce51f660808abe186edb5ebbaa9228628ee4c..e394bfda538b21674a2eb3a2a0cde6a841568912:/src/phar-stub.php diff --git a/src/phar-stub.php b/src/phar-stub.php index 64c463e..8535a6f 100644 --- a/src/phar-stub.php +++ b/src/phar-stub.php @@ -41,6 +41,13 @@ set_include_path( . PATH_SEPARATOR . 'phar://' . __FILE__ . '/lib/' ); Phar::webPhar(null, $web, null, array(), 'rewritePath'); + +//work around https://bugs.php.net/bug.php?id=52322 +if (php_sapi_name() == 'cgi-fcgi') { + require 'phar://' . __FILE__ . '/' . $web; + exit(); +} + require 'phar://' . __FILE__ . '/' . $cli; __HALT_COMPILER(); ?>