1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 14:31:06 +02:00

Add missing NEWS and UPGRADING for bug #68938

This commit is contained in:
Jakub Zelenka
2015-02-08 16:13:22 +00:00
parent f2825042b4
commit 898f42ec6a
2 changed files with 5 additions and 2 deletions

4
NEWS
View File

@@ -75,9 +75,11 @@
. Fixed bug #65933 (Cannot specify config lines longer than 1024 bytes). (Chris Wright)
. Implement request #67106 (Split main fpm config). (Elan Ruusamäe, Remi)
- Json
- JSON
. Replace non-free JSON parser with a parser from Jsond extension, fixes #63520
(JSON extension includes a problematic license statement). (Jakub Zelenka)
. Fixed bug #68938 (json_decode() decodes empty string without error).
(jeremy at bat-country dot us)
- LiteSpeed:
. Updated LiteSpeed SAPI code from V5.5 to V6.6. (George Wang)

View File

@@ -107,9 +107,10 @@ PHP X.Y UPGRADE NOTES
instead.
. Removed set_magic_quotes_runtime() and its alias magic_quotes_runtime().
- Json:
- JSON:
. Rejected RFC 7159 incompatible number formats in json_decode string -
top level (07, 0xff, .1, -.1) and all levels ([1.], [1.e1])
. Empty PHP string passed to json_encode emits a JSON syntax error.
- Stream:
. Removed set_socket_blocking() in favor of its alias stream_set_blocking().