summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-12-10 16:52:17 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-12-10 16:53:08 +0100
commit9e3ba775b7de7d7647c488beb9e302d03690f955 (patch)
tree511c1b86b2c6e1e5875be73c085c4a94d714aa43 /NEWS
parenta5527577e7e80dbaf4e0313c1bfc890b2cc5f3b7 (diff)
downloadphp-git-9e3ba775b7de7d7647c488beb9e302d03690f955.tar.gz
Fixed bug #72368
Generate a param count mismatch error even if the query contains no placeholders. Additionally we shouldn't HANDLE errors from pdo_parse_params, which are always reported via raise_impl_error. Doing so results in duplicate error messages.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 536b028fd9..f8d543934f 100644
--- a/NEWS
+++ b/NEWS
@@ -54,6 +54,8 @@ PHP NEWS
. Fixed bug #79872 (Can't execute query with pending result sets). (Nikita)
. Fixed bug #79131 (PDO does not throw an exception when parameter values are
missing). (Nikita)
+ . Fixed bug #72368 (PdoStatement->execute() fails but does not throw an
+ exception). (Nikita)
- Phar:
. Fixed bug #73809 (Phar Zip parse crash - mmap fail). (cmb)