summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2006-02-05 22:10:53 +0000
committerChristian Fowler <spider@viovio.com>2006-02-05 22:10:53 +0000
commit9c0705c83c1a24b62c8b71a87cf5f64742e90eba (patch)
tree8535f2196a319f6fa7a0d0dfe6b1d23b22fe2cd8
parent390bd9da0e03d2111497fe91b33839eb438c4aa1 (diff)
downloadkernel-9c0705c83c1a24b62c8b71a87cf5f64742e90eba.tar.gz
kernel-9c0705c83c1a24b62c8b71a87cf5f64742e90eba.tar.bz2
kernel-9c0705c83c1a24b62c8b71a87cf5f64742e90eba.zip
add Execute function compatibity back for bitcommerce
-rwxr-xr-xBitDbBase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/BitDbBase.php b/BitDbBase.php
index c46c4dc..09388f3 100755
--- a/BitDbBase.php
+++ b/BitDbBase.php
@@ -3,7 +3,7 @@
* ADOdb Library interface Class
*
* @package kernel
- * @version $Header: /cvsroot/bitweaver/_bit_kernel/BitDbBase.php,v 1.4 2006/02/01 18:41:37 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_kernel/BitDbBase.php,v 1.5 2006/02/05 22:10:53 spiderr Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -283,7 +283,7 @@ class BitDb
* ADODB compatibility functions for bitcommerce
*/
function Execute($pQuery, $pNumRows = false, $zf_cache = false, $pCacheTime=BIT_QUERY_DEFAULT) {
- // PURE VIRTUAL
+ return $this->query( $pQuery, NULL, $pNumRows, NULL, $pCacheTime );
}
/**