summaryrefslogtreecommitdiff
path: root/docs/changelog.md
diff options
context:
space:
mode:
authorAndy Theuninck <andy@gohanman.com>2016-05-19 13:02:40 -0500
committerDamien Regad <dregad@mantisbt.org>2016-05-25 18:41:14 +0200
commit3a8a40e4cbc2494780b6c86d8b7ca23877dc84d9 (patch)
tree5dd47a114dcb0d34c643288081367c0815e377d3 /docs/changelog.md
parentcf38688f36579051e444b56fd96a0ffb3aec923e (diff)
downloadadodb-3a8a40e4cbc2494780b6c86d8b7ca23877dc84d9.tar.gz
adodb-3a8a40e4cbc2494780b6c86d8b7ca23877dc84d9.tar.bz2
adodb-3a8a40e4cbc2494780b6c86d8b7ca23877dc84d9.zip
Fix PHP notice when ADO_pdo subclass calls Execute()
Call chain is: 1. ADOConnection::Execute() 2. ADOConnection::_Execute() 3. ADO_pdo::_query() Since $this is an ADO_pdo subclass rather than an ADO_pdo and $_driver isn't actually an inherited property of the parent class, $this->_driver doesn't exist. Signed-off-by: Damien Regad <dregad@mantisbt.org> Original commit message reformatted Fixes #248
Diffstat (limited to 'docs/changelog.md')
-rw-r--r--docs/changelog.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/changelog.md b/docs/changelog.md
index 52c43d82..07a28d46 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -35,6 +35,7 @@ Older changelogs:
- mysqli: return fields as ADOFieldObject objects. #175
- odbc/mssql: fix null strings concatenation issue with SQL server 2012. #148
- odbc: MetaColumns() can optionally be set to return MetaType for backwards compatibility. #184
+- pdo: fix PHP notice. #248
- sqlite: _createSuffix is now compatible with parent. #178
- sqlite: metaIndexes could not locate indexes on uppercase table name. #176
- sqlite: Fix Metataypes mapping. #177