Skip to content

Commit

Permalink
Merge tag 'v5.22.7'
Browse files Browse the repository at this point in the history
# Conflicts:
#	adodb.inc.php
#	docs/changelog.md
  • Loading branch information
dregad committed Nov 4, 2023
2 parents 69a116e + e715053 commit 478c9cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Older changelogs:
[#833](https://github.com/ADOdb/ADOdb/issues/833)


## [5.22.7] - Unreleased
## [5.22.7] - 2023-11-04

### Fixed

Expand All @@ -70,6 +70,8 @@ Older changelogs:
[#1000](https://github.com/ADOdb/ADOdb/issues/1000)
- oci8: deprecation warning in selectLimit() on PHP 8.1
[#992](https://github.com/ADOdb/ADOdb/issues/992)
- oci8: Fix Automatic conversion of false to array
[#998](https://github.com/ADOdb/ADOdb/issues/998)
- oci8: Prevent str_replace NULL error in qstr() methods on PHP 8.1
[#999](https://github.com/ADOdb/ADOdb/issues/999)

Expand Down Expand Up @@ -1478,7 +1480,7 @@ Released together with [v4.95](changelog_v4.x.md#495---17-may-2007)

[5.23.0]: https://github.com/adodb/adodb/compare/v5.22.6...master

[5.22.7]: https://github.com/adodb/adodb/compare/v5.22.6...hotfix/5.22
[5.22.7]: https://github.com/adodb/adodb/compare/v5.22.6...v5.22.7
[5.22.6]: https://github.com/adodb/adodb/compare/v5.22.5...v5.22.6
[5.22.5]: https://github.com/adodb/adodb/compare/v5.22.4...v5.22.5
[5.22.4]: https://github.com/adodb/adodb/compare/v5.22.3...v5.22.4
Expand Down
2 changes: 1 addition & 1 deletion drivers/adodb-oci8.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class ADODB_oci8 extends ADOConnection {
var $random = "abs(mod(DBMS_RANDOM.RANDOM,10000001)/10000000)";
var $noNullStrings = false;
var $connectSID = false;
var $_bind = false;
var $_bind = array();
var $_nestedSQL = true;
var $_getarray = false; // currently not working
var $leftOuter = ''; // oracle wierdness, $col = $value (+) for LEFT OUTER, $col (+)= $value for RIGHT OUTER
Expand Down

0 comments on commit 478c9cf

Please sign in to comment.