|
From: andi <bin...@li...> - 2001-10-01 11:16:58
|
andi Mon Oct 1 04:16:52 2001 EDT
Modified files:
/r2/binarycloud/base/mgr QueryManager.php
Log:
Fixed wrong parameter count in MetabaseGetColumnNames() call.
Index: r2/binarycloud/base/mgr/QueryManager.php
diff -u r2/binarycloud/base/mgr/QueryManager.php:1.5 r2/binarycloud/base/mgr/QueryManager.php:1.6
--- r2/binarycloud/base/mgr/QueryManager.php:1.5 Fri Sep 21 03:44:54 2001
+++ r2/binarycloud/base/mgr/QueryManager.php Mon Oct 1 04:16:52 2001
@@ -1,7 +1,7 @@
<?php
// Header {{{
/*
- * -File $Id: QueryManager.php,v 1.5 2001/09/21 10:44:54 andi Exp $
+ * -File $Id: QueryManager.php,v 1.6 2001/10/01 11:16:52 andi Exp $
* -License LGPL (http://www.gnu.org/copyleft/lesser.html)
* -Copyright 2000, Intacct Corporation
* -Author John P. Campbell
@@ -598,7 +598,7 @@
global $Debug;
if ($_headers) {
- $colNames = MetabaseGetColumnNames($this->handle, $_result);
+ $success = MetabaseGetColumnNames($this->handle, $_result, $colNames);
$Debug->CaptureVar('QueryManager: Result columnames', $colNames);
}
|