diff options
author | dwcjr <dwcjr@FreeBSD.org> | 2001-07-22 13:19:32 +0800 |
---|---|---|
committer | dwcjr <dwcjr@FreeBSD.org> | 2001-07-22 13:19:32 +0800 |
commit | 8e20ae1e796cb37a3bcfba30b669add5a1976f04 (patch) | |
tree | d88905d8e94a0322faed86979bf7c607c7d75ef4 /databases | |
parent | fe84cf958919f91ad118c725ad2573c5481dbbe1 (diff) | |
download | freebsd-ports-gnome-8e20ae1e796cb37a3bcfba30b669add5a1976f04.tar.gz freebsd-ports-gnome-8e20ae1e796cb37a3bcfba30b669add5a1976f04.tar.zst freebsd-ports-gnome-8e20ae1e796cb37a3bcfba30b669add5a1976f04.zip |
Remove files/patch-adodb-odbc.inc.php to fix compilation
Bump PORTREVISION
PR: 29124
Submitted by: maintainer
Diffstat (limited to 'databases')
-rw-r--r-- | databases/adodb/Makefile | 1 | ||||
-rw-r--r-- | databases/adodb/files/patch-adodb-odbc.inc.php | 20 |
2 files changed, 1 insertions, 20 deletions
diff --git a/databases/adodb/Makefile b/databases/adodb/Makefile index d9e9e3f88014..658575913264 100644 --- a/databases/adodb/Makefile +++ b/databases/adodb/Makefile @@ -7,6 +7,7 @@ PORTNAME= adodb PORTVERSION= 1.20 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= http://phplens.com/lens/dl/ DISTNAME= ${PORTNAME}120 diff --git a/databases/adodb/files/patch-adodb-odbc.inc.php b/databases/adodb/files/patch-adodb-odbc.inc.php deleted file mode 100644 index 159b2488a12e..000000000000 --- a/databases/adodb/files/patch-adodb-odbc.inc.php +++ /dev/null @@ -1,20 +0,0 @@ ---- 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() { |