diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2011-02-08 21:40:51 +0000 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2011-02-08 21:40:51 +0000 |
commit | 6dfee4f87751d4d80bbb2b63b8a2a8de5a359fd1 (patch) | |
tree | a56074bfa19b68ab6604af608d935c1c1e7ef916 /main/main.c | |
parent | 6fba6737d586e27908daba1b7a293750e6c82787 (diff) | |
download | php-git-6dfee4f87751d4d80bbb2b63b8a2a8de5a359fd1.tar.gz |
- Changed default serialize_precision from 100 to 17, as discussed in internals.
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index afae42c431..3fee30f5ba 100644 --- a/main/main.c +++ b/main/main.c @@ -477,7 +477,7 @@ PHP_INI_BEGIN() STD_PHP_INI_BOOLEAN("y2k_compliance", "1", PHP_INI_ALL, OnUpdateBool, y2k_compliance, php_core_globals, core_globals) STD_PHP_INI_ENTRY("unserialize_callback_func", NULL, PHP_INI_ALL, OnUpdateString, unserialize_callback_func, php_core_globals, core_globals) - STD_PHP_INI_ENTRY("serialize_precision", "100", PHP_INI_ALL, OnUpdateLongGEZero, serialize_precision, php_core_globals, core_globals) + STD_PHP_INI_ENTRY("serialize_precision", "17", PHP_INI_ALL, OnUpdateLongGEZero, serialize_precision, php_core_globals, core_globals) STD_PHP_INI_ENTRY("arg_separator.output", "&", PHP_INI_ALL, OnUpdateStringUnempty, arg_separator.output, php_core_globals, core_globals) STD_PHP_INI_ENTRY("arg_separator.input", "&", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateStringUnempty, arg_separator.input, php_core_globals, core_globals) |