From: Rasmus Lerdorf Date: Tue, 6 Oct 2015 08:13:38 +0000 (+0900) Subject: zend.assertions is not a boolean X-Git-Tag: php-7.1.0alpha1~1027 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac78430c7424b5834d6665bdfd6ced8882c65b22;p=php zend.assertions is not a boolean --- diff --git a/Zend/zend.c b/Zend/zend.c index 2934f4a075..27e807067f 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -129,7 +129,7 @@ static ZEND_INI_MH(OnUpdateAssertions) /* {{{ */ ZEND_INI_BEGIN() ZEND_INI_ENTRY("error_reporting", NULL, ZEND_INI_ALL, OnUpdateErrorReporting) - STD_ZEND_INI_BOOLEAN("zend.assertions", "1", ZEND_INI_ALL, OnUpdateAssertions, assertions, zend_executor_globals, executor_globals) + STD_ZEND_INI_ENTRY("zend.assertions", "1", ZEND_INI_ALL, OnUpdateAssertions, assertions, zend_executor_globals, executor_globals) STD_ZEND_INI_BOOLEAN("zend.enable_gc", "1", ZEND_INI_ALL, OnUpdateGCEnabled, gc_enabled, zend_gc_globals, gc_globals) STD_ZEND_INI_BOOLEAN("zend.multibyte", "0", ZEND_INI_PERDIR, OnUpdateBool, multibyte, zend_compiler_globals, compiler_globals) ZEND_INI_ENTRY("zend.script_encoding", NULL, ZEND_INI_ALL, OnUpdateScriptEncoding)