diff options
author | Edin Kadribasic <edink@php.net> | 2004-01-02 22:31:32 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2004-01-02 22:31:32 +0000 |
commit | d2317fc110964fda9740fcb6973cd57815f72a31 (patch) | |
tree | 5ef7c99e8150dc38e4173be50aa7928a0609d67f /sapi | |
parent | 85f62caad270ad7ec2afd826d83d1684e5a41985 (diff) | |
download | php-git-d2317fc110964fda9740fcb6973cd57815f72a31.tar.gz |
Disable output buffering in CLI overriding php.ini setting.
Fixes #26755.
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/cli/php_cli.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 420e355b43..f9325844c5 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -686,6 +686,7 @@ int main(int argc, char *argv[]) INI_HARDCODED("register_argc_argv", "1"); INI_HARDCODED("html_errors", "0"); INI_HARDCODED("implicit_flush", "1"); + INI_HARDCODED("output_buffering", "0"); INI_HARDCODED("max_execution_time", "0"); optind = orig_optind; |