summaryrefslogtreecommitdiff
path: root/BitDbPear.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2006-02-14 16:39:06 +0000
committerChristian Fowler <spider@viovio.com>2006-02-14 16:39:06 +0000
commitc7b3b195466ef37b82fc66fb12b0074926b8aa02 (patch)
treed5fc344f675e6604c1c75546ca148ffce33abc90 /BitDbPear.php
parent518430a9b805c39f25ea16b0d6c9740603f9e20c (diff)
downloadkernel-c7b3b195466ef37b82fc66fb12b0074926b8aa02.tar.gz
kernel-c7b3b195466ef37b82fc66fb12b0074926b8aa02.tar.bz2
kernel-c7b3b195466ef37b82fc66fb12b0074926b8aa02.zip
fix GenID -> nextId pear call
Diffstat (limited to 'BitDbPear.php')
-rwxr-xr-xBitDbPear.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/BitDbPear.php b/BitDbPear.php
index e661dcf..4305adf 100755
--- a/BitDbPear.php
+++ b/BitDbPear.php
@@ -3,7 +3,7 @@
* ADOdb Library interface Class
*
* @package kernel
- * @version $Header: /cvsroot/bitweaver/_bit_kernel/BitDbPear.php,v 1.7 2006/02/10 17:22:38 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_kernel/BitDbPear.php,v 1.8 2006/02/14 16:39:06 spiderr Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -290,7 +290,7 @@ class BitDbPear extends BitDb
if( empty( $this->mDb ) ) {
return FALSE;
}
- return $this->mDb->GenID( str_replace("`","",BIT_DB_PREFIX).$pSequenceName );
+ return $this->mDb->nextId( str_replace("`","",BIT_DB_PREFIX).$pSequenceName );
}
/**