summaryrefslogtreecommitdiff
path: root/drivers/adodb-postgres7.inc.php
diff options
context:
space:
mode:
authorDamien Regad <dregad@mantisbt.org>2015-05-12 00:42:01 +0200
committerDamien Regad <dregad@mantisbt.org>2015-05-15 00:59:41 +0200
commit6f4022602f3ad27b9d60328f4c934fe9ed8d030f (patch)
treeba3381f0e29aaf504ebe6f3daf77910cc0d6d48a /drivers/adodb-postgres7.inc.php
parentf6031dfad3ce1ef209282fe62b23d2b3c5c6b65f (diff)
downloadadodb-6f4022602f3ad27b9d60328f4c934fe9ed8d030f.tar.gz
adodb-6f4022602f3ad27b9d60328f4c934fe9ed8d030f.tar.bz2
adodb-6f4022602f3ad27b9d60328f4c934fe9ed8d030f.zip
Use ADODB_ASSOC_CASE_xxx constants
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 bc37582e..5a975797 100644
--- a/drivers/adodb-postgres7.inc.php
+++ b/drivers/adodb-postgres7.inc.php
@@ -96,7 +96,7 @@ class ADODB_postgres7 extends ADODB_postgres64 {
function __construct()
{
parent::__construct();
- if (ADODB_ASSOC_CASE !== 2) {
+ if (ADODB_ASSOC_CASE !== ADODB_ASSOC_CASE_NATIVE) {
$this->rsPrefix .= 'assoc_';
}
$this->_bindInputArray = PHP_VERSION >= 5.1;