summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2016-08-13 00:31:55 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2016-08-13 01:11:13 +0200
commit7938ebf6c1b302d3d1b1bfb798f1cf6f07e1e178 (patch)
tree2bea0d9124ec469ae5d2b1a741d9327ee0d9d386 /NEWS
parentf19578ad58d7ae82f16afd282e1c600927b106a2 (diff)
downloadphp-git-7938ebf6c1b302d3d1b1bfb798f1cf6f07e1e178.tar.gz
Fix #60665: call to empty() on NULL result using PDO::FETCH_LAZY returns false
The has_property handler only checked whether a respective column name exists, but neither whether the column value is set, nor whether it is empty, respectively. We fix that to match the behavior of POD:FETCH_OBJ in particular and PHP in general.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 10f030221a..90215cdbfc 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,10 @@ PHP NEWS
- MSSQL:
. Fixed bug #72039 (Use of uninitialised value on mssql_guid_string). (Kalle)
+- PDO:
+ . Fixed bug #60665 (call to empty() on NULL result using PDO::FETCH_LAZY
+ returns false). (cmb)
+
18 Aug 2016, PHP 5.6.25
- Core: