From owner-freebsd-ports Thu Jun 28 4:40:14 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D5CD37B406 for ; Thu, 28 Jun 2001 04:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5SBe3N08189; Thu, 28 Jun 2001 04:40:03 -0700 (PDT) (envelope-from gnats) Received: from dagobert.skystream.nl (smtp.uwnet.nl [195.7.130.55]) by hub.freebsd.org (Postfix) with ESMTP id BEDFF37B407 for ; Thu, 28 Jun 2001 04:31:31 -0700 (PDT) (envelope-from abgoeree@uwnet.nl) Received: from dyn.dailup.c227128209.isd.to (dyn.dailup.c227128209.isd.to [213.227.128.209]) by dagobert.skystream.nl (8.11.3/8.11.0) with ESMTP id f5SBYxi22655 for ; Thu, 28 Jun 2001 13:34:59 +0200 Received: (qmail 82525 invoked by uid 1000); 28 Jun 2001 11:32:32 -0000 Message-Id: <20010628113232.82524.qmail@mandark.attica.home> Date: 28 Jun 2001 11:32:32 -0000 From: "Andre Goeree" Reply-To: abgoeree@uwnet.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/28479: Update port: databases/adodb Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 28479 >Category: ports >Synopsis: Update port: databases/adodb >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 28 04:40:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Maintainer >Release: FreeBSD 4.3-STABLE i386 >Organization: >Environment: System: FreeBSD 4.3-STABLE #3: Wed Jun 27 08:39:27 CEST 2001 >Description: Added patch: files/patch-adodb-odbc.inc.php workaround for PHP 4.0.6 ODBC bugs Modified: Makefile bump portrevision >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ago/src/ports-devel/cvsroot/adodb/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 2001/06/28 10:31:15 1.1.1.1 +++ Makefile 2001/06/28 11:07:34 @@ -7,6 +7,7 @@ PORTNAME= adodb PORTVERSION= 1.12 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= http://phplens.com/lens/dl/ DISTNAME= ${PORTNAME}112 Index: files/patch-adodb-odbc.inc.php =================================================================== RCS file: /home/ago/src/ports-devel/cvsroot/adodb/files/patch-adodb-odbc.inc.php,v retrieving revision 1.1 diff -u -r1.1 patch-adodb-odbc.inc.php --- files/patch-adodb-odbc.inc.php 2001/06/28 10:36:46 1.1 +++ files/patch-adodb-odbc.inc.php 2001/06/28 08:07:45 @@ -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() { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message