diff options
| author | Christian Fowler <spider@viovio.com> | 2006-02-14 16:39:06 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2006-02-14 16:39:06 +0000 |
| commit | c7b3b195466ef37b82fc66fb12b0074926b8aa02 (patch) | |
| tree | d5fc344f675e6604c1c75546ca148ffce33abc90 /BitDbPear.php | |
| parent | 518430a9b805c39f25ea16b0d6c9740603f9e20c (diff) | |
| download | kernel-c7b3b195466ef37b82fc66fb12b0074926b8aa02.tar.gz kernel-c7b3b195466ef37b82fc66fb12b0074926b8aa02.tar.bz2 kernel-c7b3b195466ef37b82fc66fb12b0074926b8aa02.zip | |
fix GenID -> nextId pear call
Diffstat (limited to 'BitDbPear.php')
| -rwxr-xr-x | BitDbPear.php | 4 |
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 ); } /** |
