diff options
author | Stanislav Malyshev <stas@php.net> | 2009-07-07 21:25:46 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2009-07-07 21:25:46 +0000 |
commit | e865c0b4ee31ebdb01504f886910579ba9777860 (patch) | |
tree | 10dd1c4c02cd33271ae54c4ed436e67d3000ab0a /ext/intl/php_intl.c | |
parent | 87f9d62861d39b4feaa1ffcbbb5eaa95b3fb71b9 (diff) | |
download | php-git-e865c0b4ee31ebdb01504f886910579ba9777860.tar.gz |
merge errors support
Diffstat (limited to 'ext/intl/php_intl.c')
-rwxr-xr-x | ext/intl/php_intl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/intl/php_intl.c b/ext/intl/php_intl.c index 13f36fd03c..831ace4d58 100755 --- a/ext/intl/php_intl.c +++ b/ext/intl/php_intl.c @@ -454,6 +454,7 @@ zend_function_entry intl_functions[] = { /* {{{ INI Settings */ PHP_INI_BEGIN() STD_PHP_INI_ENTRY(LOCALE_INI_NAME, NULL, PHP_INI_ALL, OnUpdateStringUnempty, default_locale, zend_intl_globals, intl_globals) + STD_PHP_INI_ENTRY("intl.error_level", "0", PHP_INI_ALL, OnUpdateLong, error_level, zend_intl_globals, intl_globals) PHP_INI_END() /* }}} */ |