summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2021-02-17 14:45:35 +0100
committerNikita Popov <nikita.ppv@gmail.com>2021-02-18 11:39:28 +0100
commit6b0f14fe3b08be05340c6a4ae03f4131f04d882a (patch)
tree826c6b8ae8def0f858e404d104d22e573a25a5b0 /NEWS
parent5d160e309ed207e618d49029e51c9c2dc2c5e61c (diff)
downloadphp-git-6b0f14fe3b08be05340c6a4ae03f4131f04d882a.tar.gz
Fixed bug #75474
For fake closures, we need to share static variables with the original function, not work on a separate copy. Calling a function through Closure::fromCallable() should have the same behavior as calling it directly.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 5d6db8eb52..c6b626bb53 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,8 @@ PHP NEWS
- Core:
. Fixed inclusion order for phpize builds on Windows. (cmb)
. Added missing hashtable insertion APIs for arr/obj/ref. (Sara)
+ . Fixed bug #75474 (function scope static variables are not bound to a unique
+ function). (Nikita)
- FTP:
. Convert resource<ftp> to object \FTPConnection. (Sara)