diff options
| -rw-r--r-- | adodb.inc.php | 4 | ||||
| -rw-r--r-- | docs/changelog.md | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/adodb.inc.php b/adodb.inc.php index 7aef8c9b..4ae8cad7 100644 --- a/adodb.inc.php +++ b/adodb.inc.php @@ -288,8 +288,8 @@ if (!defined('_ADODB_LAYER')) { //print "Errorno ($fn errno=$errno m=$errmsg) "; $thisConnection->_transOK = false; if ($thisConnection->_oldRaiseFn) { - $fn = $thisConnection->_oldRaiseFn; - $fn($dbms, $fn, $errno, $errmsg, $p1, $p2,$thisConnection); + $errfn = $thisConnection->_oldRaiseFn; + $errfn($dbms, $fn, $errno, $errmsg, $p1, $p2,$thisConnection); } } diff --git a/docs/changelog.md b/docs/changelog.md index 3a0c4166..d2098b5c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -99,6 +99,10 @@ Older changelogs: - xml: fix invalid xmlschema03.dtd and descr tag in session schema XML. #595 - loadbalancer (new feature): read/write splitting and load balancing across multiple connections, thanks to Mike Benoit. #111 +## 5.20.17 - Unreleased + +- core: fix PHP notice in ADOdb_Exception constructor when using transactions. #601 + ## 5.20.16 - 12-Jan-2020 - mssql: queries are not correctly closed. #590 |
