summaryrefslogtreecommitdiff
path: root/drivers/adodb-postgres7.inc.php
diff options
context:
space:
mode:
authorMark Newnham <mark@newnhams.com>2020-01-07 17:15:21 -0700
committerDamien Regad <dregad@mantisbt.org>2020-01-24 23:08:41 +0100
commitbb88827c1e1c13893c0cf1202baae2948dffb29d (patch)
tree3b0f8136fc6bd493a3434f293417165a4b4ff817 /drivers/adodb-postgres7.inc.php
parent90be3dc4ea16ce1a52a75900673f859f6e1a692e (diff)
downloadadodb-bb88827c1e1c13893c0cf1202baae2948dffb29d.tar.gz
adodb-bb88827c1e1c13893c0cf1202baae2948dffb29d.tar.bz2
adodb-bb88827c1e1c13893c0cf1202baae2948dffb29d.zip
Removed PHP5.1 check in ADODB_postgres7::_construct()
Diffstat (limited to 'drivers/adodb-postgres7.inc.php')
-rw-r--r--drivers/adodb-postgres7.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/adodb-postgres7.inc.php b/drivers/adodb-postgres7.inc.php
index a94e84bd..6acf6cfb 100644
--- a/drivers/adodb-postgres7.inc.php
+++ b/drivers/adodb-postgres7.inc.php
@@ -101,7 +101,7 @@ class ADODB_postgres7 extends ADODB_postgres64 {
if (ADODB_ASSOC_CASE !== ADODB_ASSOC_CASE_NATIVE) {
$this->rsPrefix .= 'assoc_';
}
- $this->_bindInputArray = PHP_VERSION >= 5.1;
+ $this->_bindInputArray = true;
}