summaryrefslogtreecommitdiff
path: root/databases/adodb
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2001-06-28 12:33:48 +0000
committerKevin Lo <kevlo@FreeBSD.org>2001-06-28 12:33:48 +0000
commit6de10a59f15486cb8fcfa9c723881cdc7dcd863c (patch)
tree7d6ca8b3ae3a932df6098bb74eb7389c1346d30f /databases/adodb
parentInstall docs. (diff)
Fix PHP 4.0.6 ODBC bugs.
PR: 28479 Submitted by: MAINTAINER
Notes
Notes: svn path=/head/; revision=44523
Diffstat (limited to 'databases/adodb')
-rw-r--r--databases/adodb/Makefile1
-rw-r--r--databases/adodb/files/patch-adodb-odbc.inc.php20
2 files changed, 21 insertions, 0 deletions
diff --git a/databases/adodb/Makefile b/databases/adodb/Makefile
index 5c6740d5005f..11b14d74f0f1 100644
--- a/databases/adodb/Makefile
+++ b/databases/adodb/Makefile
@@ -7,6 +7,7 @@
PORTNAME= adodb
PORTVERSION= 1.12
+PORTREVISION= 1
CATEGORIES= databases www
MASTER_SITES= http://phplens.com/lens/dl/
DISTNAME= ${PORTNAME}112
diff --git a/databases/adodb/files/patch-adodb-odbc.inc.php b/databases/adodb/files/patch-adodb-odbc.inc.php
new file mode 100644
index 000000000000..159b2488a12e
--- /dev/null
+++ b/databases/adodb/files/patch-adodb-odbc.inc.php
@@ -0,0 +1,20 @@
+--- adodb-odbc.inc.php.orig Wed Jun 6 06:17:56 2001
++++ adodb-odbc.inc.php Thu Jun 28 10:00:41 2001
+@@ -310,7 +310,7 @@
+ {
+ if ($this->_numOfRows != 0 && !$this->EOF) {
+ $this->_currentRow++;
+- if (odbc_fetch_into($this->_queryID,0,$this->fields)) return true;
++ if (odbc_fetch_into($this->_queryID,$row=0,$this->fields)) return true;
+ }
+ $this->EOF = true;
+ return false;
+@@ -318,7 +318,7 @@
+
+ function _fetch($ignore_fields=false)
+ {
+- return odbc_fetch_into($this->_queryID,0,$this->fields);
++ return odbc_fetch_into($this->_queryID,$row=0,$this->fields);
+ }
+
+ function _close() {