diff options
| author | Damien Regad <dregad@mantisbt.org> | 2021-10-25 15:00:41 +0200 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2021-10-25 15:00:41 +0200 |
| commit | cdc8ea0c9e9031f1f32015af8bc0b49e41cda59c (patch) | |
| tree | 1ac6cfd569a35722403919335388b9a37fa3168b /docs/changelog.md | |
| parent | 73806d6c8a0b7ab6eff60da19f9bfa60cf8d32ad (diff) | |
| download | adodb-cdc8ea0c9e9031f1f32015af8bc0b49e41cda59c.tar.gz adodb-cdc8ea0c9e9031f1f32015af8bc0b49e41cda59c.tar.bz2 adodb-cdc8ea0c9e9031f1f32015af8bc0b49e41cda59c.zip | |
mysqli: force error reporting mode to OFF
PHP 8.1 changes the default error reporting mode from OFF to
MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT [1].
We manually set it to MYSQLI_REPORT_OFF in the ADODB_mysqli class
constructor to ensure compatibility.
Fixes #755
[1]: https://wiki.php.net/rfc/mysqli_default_errmode
Diffstat (limited to 'docs/changelog.md')
| -rw-r--r-- | docs/changelog.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/changelog.md b/docs/changelog.md index 2b4fdb45..9af8d376 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -18,8 +18,10 @@ Older changelogs: ### Fixed +- mysqli: force error reporting mode to OFF (PHP 8.1 compatibility) + [#755](https://github.com/ADOdb/ADOdb/issues/755) - pdo: fix metaIndexes declaration to match parent - [#717](https://github.com/ADOdb/ADOdb/issues/749) + [#717](https://github.com/ADOdb/ADOdb/issues/717) ## [5.21.2] - 2021-08-22 |
