We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5dedb0 commit a1c5cc7Copy full SHA for a1c5cc7
jq.c
@@ -31,7 +31,7 @@ static void *zend_object_alloc(size_t obj_size, zend_class_entry *class_type)
31
#endif
32
33
ZEND_INI_BEGIN()
34
- STD_ZEND_INI_ENTRY("jq.display_errors", "1",
+ STD_ZEND_INI_ENTRY("jq.display_errors", "0",
35
ZEND_INI_ALL, OnUpdateBool, display_errors,
36
zend_jq_globals, jq_globals)
37
ZEND_INI_END()
@@ -691,7 +691,7 @@ static const zend_function_entry zend_jq_run_methods[] = {
691
692
static void zend_jq_init_globals(zend_jq_globals *jq_globals)
693
{
694
- jq_globals->display_errors = 1;
+ jq_globals->display_errors = 0;
695
}
696
697
ZEND_MINIT_FUNCTION(jq)
0 commit comments