From: IFEROE <IF...@te...> - 2001-10-01 10:53:18
|
Hi, Yesterday I did a complete download of binarycloud from CVS. So far, I've only found two problems. The first one is in $BCHOME/base/core/Makefile. Request.php is missing from PACKAGEDFILES, so the make doesn't copy it to the build directory. The second one is in QueryManager.php. In _ProcessResult() method, MetabaseGetColumnNames is called with wrong parameters. MetabaseGetColumnNames expects three parameters but only two are supplied. I've changed this: $colNames = MetabaseGetColumnNames($this->handle, $_result); for this: $colnames = array(); $ok = MetabaseGetColumnNames($this->handle, $_result, $colnames); and it started to work again. Regards Salva ___________________________________________________________________ Consigue tu e-mail gratuito TERRA.ES Haz clic en http://www.terra.es/correo/ |