diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-10-03 09:57:53 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-10-03 09:57:53 +0000 |
commit | b52edbddf9a67736283670f6dc261326d8d71a66 (patch) | |
tree | b09c9b97025a7734238360c43d51e2db7d79ce15 /sapi/cli | |
parent | b0fcd61207467b9aba936c43b81e8bfb8d58dce3 (diff) | |
download | php-git-b52edbddf9a67736283670f6dc261326d8d71a66.tar.gz |
Shouldn't enable implicit_flush like this.
Most problems are fixed. If you find internal function that does
not follow my comment, please fix it or let me know.
Diffstat (limited to 'sapi/cli')
-rw-r--r-- | sapi/cli/php_cli.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index ddfa66163b..859e3127d3 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -466,7 +466,6 @@ int main(int argc, char *argv[]) SG(options) |= SAPI_OPTION_NO_CHDIR; zend_alter_ini_entry("register_argc_argv", 19, "1", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); zend_alter_ini_entry("html_errors", 12, "0", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); - zend_alter_ini_entry("implicit_flush", 15, "1", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); zend_alter_ini_entry("max_execution_time", 19, "0", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); zend_uv.html_errors = 0; /* tell the engine we're in non-html mode */ |