Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/09/2006, 08:57
maroca7
 
Fecha de Ingreso: agosto-2006
Mensajes: 16
Antigüedad: 17 años, 9 meses
Puntos: 0
Exclamación Error usando PHP y ADODB

hola a todos.

Tengo un problemilla y necesito de vuestra ayuda.

Os cuento: Trabajo en una aplicación q usa PHP y la libreria ADODB. En cierta parte del código me aparece el siguiente error:
"Notice: Only variable references should be returned by reference in /mnt/data/var/www/xxxxxxx/lib/adodb/adodb.inc.php on line 2657".

Concretamente, me dirige a la siguiente función:
/**
* Fetch a row, returning false if no more rows.
* This is PEAR DB compat mode.
*
* @return false or array containing the current record
*/
function &FetchRow()
{
if ($this->EOF) return false;
$arr = $this->fields;
$this->_currentRow++;
if (!$this->_fetch()) $this->EOF = true;
return $arr;
}

Cual puede ser el problema?? no creo q sea un error en dicha función ya q es una libreria muy usada.


Muxas gracias a todos