summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo André dos Santos Lopes <cataphract@php.net>2011-02-09 00:25:44 +0000
committerGustavo André dos Santos Lopes <cataphract@php.net>2011-02-09 00:25:44 +0000
commit5fad615ff5a5d18f7b0d1dea9a8b4ed21a837c20 (patch)
treed90e0a8b263e2f40f334c5e88ce278457fcbb606
parent6dfee4f87751d4d80bbb2b63b8a2a8de5a359fd1 (diff)
downloadphp-git-5fad615ff5a5d18f7b0d1dea9a8b4ed21a837c20.tar.gz
- Changed php.ini files to match the hard-coded default for serialize_precision.
-rw-r--r--php.ini-development2
-rw-r--r--php.ini-production2
2 files changed, 2 insertions, 2 deletions
diff --git a/php.ini-development b/php.ini-development
index 8bd6ae9f9e..4a494a0514 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -317,7 +317,7 @@ unserialize_callback_func =
; When floats & doubles are serialized store serialize_precision significant
; digits after the floating point. The default value ensures that when floats
; are decoded with unserialize, the data will remain the same.
-serialize_precision = 100
+serialize_precision = 17
; This directive allows you to enable and disable warnings which PHP will issue
; if you pass a value by reference at function call time. Passing values by
diff --git a/php.ini-production b/php.ini-production
index 4be59a3a0f..89c1bed7c8 100644
--- a/php.ini-production
+++ b/php.ini-production
@@ -317,7 +317,7 @@ unserialize_callback_func =
; When floats & doubles are serialized store serialize_precision significant
; digits after the floating point. The default value ensures that when floats
; are decoded with unserialize, the data will remain the same.
-serialize_precision = 100
+serialize_precision = 17
; This directive allows you to enable and disable warnings which PHP will issue
; if you pass a value by reference at function call time. Passing values by