diff options
| author | Damien Regad <dregad@mantisbt.org> | 2023-03-17 12:32:17 +0100 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2023-03-17 23:24:51 +0100 |
| commit | 7e51937c9b5a42b22cfbcea0d7235e432ebf5bcf (patch) | |
| tree | 439d0af3bd7794f53365caf567c7e398d4b6d65c /drivers/adodb-oci8.inc.php | |
| parent | 5766f6b17aac1da80302840416e24ac9a341742c (diff) | |
| download | adodb-7e51937c9b5a42b22cfbcea0d7235e432ebf5bcf.tar.gz adodb-7e51937c9b5a42b22cfbcea0d7235e432ebf5bcf.tar.bz2 adodb-7e51937c9b5a42b22cfbcea0d7235e432ebf5bcf.zip | |
oci8: remove usage of undefined $seqField property
This fixes PHP 8.2 deprecation notice.
Fixes #933
Diffstat (limited to 'drivers/adodb-oci8.inc.php')
| -rw-r--r-- | drivers/adodb-oci8.inc.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/adodb-oci8.inc.php b/drivers/adodb-oci8.inc.php index 1019c793..ca787721 100644 --- a/drivers/adodb-oci8.inc.php +++ b/drivers/adodb-oci8.inc.php @@ -321,10 +321,6 @@ END; protected function _insertID($table = '', $column = '') { - - if (!$this->seqField) - return false; - if ($this->schema) { $t = strpos($table,'.'); |
