diff options
| author | Damien Regad <dregad@mantisbt.org> | 2023-03-12 17:22:55 +0100 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2023-03-12 17:22:55 +0100 |
| commit | 99336e96e461e1fb337dd2e2d18d5fe1e3478204 (patch) | |
| tree | bf873fc1c2e2221d0ffd263614d8fbe6ec54bbbc /adodb.inc.php | |
| parent | b7a3937ba742eccef0ca837be367d78a6d210366 (diff) | |
| download | adodb-99336e96e461e1fb337dd2e2d18d5fe1e3478204.tar.gz adodb-99336e96e461e1fb337dd2e2d18d5fe1e3478204.tar.bz2 adodb-99336e96e461e1fb337dd2e2d18d5fe1e3478204.zip | |
Define ADORecordSet::$insertSig
Fixes PHP 8.2 Deprecated warning: Creation of dynamic property.
Fixes #908
Signed-off-by: Damien Regad <dregad@mantisbt.org>
Diffstat (limited to 'adodb.inc.php')
| -rw-r--r-- | adodb.inc.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/adodb.inc.php b/adodb.inc.php index 1d09a2e9..75489193 100644 --- a/adodb.inc.php +++ b/adodb.inc.php @@ -3936,6 +3936,8 @@ class ADORecordSet implements IteratorAggregate { public $customActualTypes; public $customMetaTypes; + /** @var int Only used in _adodb_getinsertsql() */ + public $insertSig; /** * @var ADOFieldObject[] Field metadata cache |
