summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2003-03-29 20:57:31 +0000
committerDerick Rethans <derick@php.net>2003-03-29 20:57:31 +0000
commitfa59090287acb4379d40eccf88cca38d47212b95 (patch)
tree4ba4b6e6106a328cc49d62ba2fc49a7d756e2701 /sapi/cli/php_cli.c
parent96231c3ab52b1a69ca30a2c81beb315b150910cf (diff)
downloadphp-git-fa59090287acb4379d40eccf88cca38d47212b95.tar.gz
- html errors should default to off (0) in CLI
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r--sapi/cli/php_cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c
index 1fedbe1c35..5fc9a17394 100644
--- a/sapi/cli/php_cli.c
+++ b/sapi/cli/php_cli.c
@@ -293,7 +293,7 @@ static void sapi_cli_ini_defaults(HashTable *configuration_hash)
MAKE_STD_ZVAL(tmp);
INI_DEFAULT("register_argc_argv", 19, "1");
- INI_DEFAULT("html_errors", 12, "1");
+ INI_DEFAULT("html_errors", 12, "0");
INI_DEFAULT("implicit_flush", 15, "1");
INI_DEFAULT("max_execution_time", 19, "0");