diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-05-11 22:10:31 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-05-11 22:10:31 +0000 |
commit | 1f41b288e9bca992262f2fefcee0e427aca3d7c0 (patch) | |
tree | c59622bc652a8a3ee8da9a8b0e72ca20b7c8cd48 /sapi/cli/php_cli.c | |
parent | b8c7ecc0610aea509db01302e9fcad7f00604533 (diff) | |
download | php-git-1f41b288e9bca992262f2fefcee0e427aca3d7c0.tar.gz |
Fixed bug #37306 (max_execution_time = max_input_time)
Diffstat (limited to 'sapi/cli/php_cli.c')
-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 3696a21566..fe63eeb1cc 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -708,6 +708,7 @@ int main(int argc, char *argv[]) INI_HARDCODED("implicit_flush", "1"); INI_HARDCODED("output_buffering", "0"); INI_HARDCODED("max_execution_time", "0"); + INI_HARDCODED("max_input_time", "-1"); while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0)) != -1) { switch (c) { |