Tiki Wiki: Notice: Only variable references should be returned by reference

You can find the latest version of ADODB here.

To modify the function to not return a reference use the following code in your adodb.inc.php file:

/**
* 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()
+ function FetchRow()
{
if ($this->EOF) {
$false = false;
return $false;
}
$arr = $this->fields;
$this->_currentRow++;
if (!$this->_fetch()) $this->EOF = true;
return $arr;
}
  • 481 Users Found This Useful

Was this answer helpful?

Related Articles

How to turn off magic quotes gpc for Joomla 3

Add the line "php_flag magic_quotes_gpc off" to the .htaccess file. If one does not exist create...

Moodle: Notice: Only variable references should be returned by reference

Notice: Only variable references should be returned by reference The issue is with Moodle...

How do I reset Joomla administrator password?

How to reset Joomla administrative password Start by logging into your control panel. Once...

Joomla Strict Standards: Declaration of JParameter::loadSetupFile() should be compatible with that of JRegistry::loadSetupFile()

For this particular error we have found a work around which works until Joomla corrects their...

Turn off PHP error messages via htaccess

From time to time you may encounter a script which has error messages you do not wish to see....