diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-12 10:32:05 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-12 10:36:40 +0200 |
commit | 824541d57ecf5514b55b98e392e9d1c30eb38764 (patch) | |
tree | 503c2f6e87f3d2ce7e918392026bad30365dc4e0 /sapi/cli/php_cli.c | |
parent | 1e9a5c67ef6d075df16d4183abf62e4c99b2f8c6 (diff) | |
download | php-git-824541d57ecf5514b55b98e392e9d1c30eb38764.tar.gz |
Disable report_zend_debug by default
We might just want to drop this completely, but at least don't
enable it by default. It already gets disabled by a number of
SAPIs, but we should make that the default state.
Diffstat (limited to 'sapi/cli/php_cli.c')
-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 34bf1aee38..d28f5a5378 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -420,7 +420,6 @@ static int php_cli_startup(sapi_module_struct *sapi_module) /* {{{ */ static void sapi_cli_ini_defaults(HashTable *configuration_hash) { zval tmp; - INI_DEFAULT("report_zend_debug", "0"); INI_DEFAULT("display_errors", "1"); } /* }}} */ |