diff options
author | Jehan-Guillaume (ioguix) de Rorthais | 2010-03-12 23:46:57 +0000 |
---|---|---|
committer | Jehan-Guillaume (ioguix) de Rorthais | 2010-03-12 23:46:57 +0000 |
commit | 071d447030bee412cb441cc674af9321b9ca1ea3 (patch) | |
tree | 0413f4571cd3deea9400c24703ab6a088b099cb8 /libraries/adodb/adodb-csvlib.inc.php | |
parent | 885e340719ab1a8a71643ee0220c9fb7e8f2dc03 (diff) |
Update ADODB library with latest release. It fixes some more deprecation warning about function removed in PHP 6.0. Reported by Christian Tessarek.
Diffstat (limited to 'libraries/adodb/adodb-csvlib.inc.php')
-rw-r--r-- | libraries/adodb/adodb-csvlib.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/adodb/adodb-csvlib.inc.php b/libraries/adodb/adodb-csvlib.inc.php index 1f7543f9..7b1c9e11 100644 --- a/libraries/adodb/adodb-csvlib.inc.php +++ b/libraries/adodb/adodb-csvlib.inc.php @@ -8,7 +8,7 @@ $ADODB_INCLUDED_CSV = 1; /* - V5.09 25 June 2009 (c) 2000-2009 John Lim (jlim#natsoft.com). All rights reserved. + V5.10 10 Nov 2009 (c) 2000-2009 John Lim (jlim#natsoft.com). All rights reserved. Released under both BSD license and Lesser GPL library license. Whenever there is any discrepancy between the two licenses, the BSD license will take precedence. See License.txt. @@ -71,6 +71,7 @@ $ADODB_INCLUDED_CSV = 1; $savefetch = isset($rs->adodbFetchMode) ? $rs->adodbFetchMode : $rs->fetchMode; $class = $rs->connection->arrayClass; $rs2 = new $class(); + $rs2->timeCreated = $rs->timeCreated; # memcache fix $rs2->sql = $rs->sql; $rs2->oldProvider = $rs->dataProvider; $rs2->InitArrayFields($rows,$flds); |