Website HostingHosting AwardsClick for Live Support
  11 Mar 2010 
Back to Homepage
Support Center Home


 Tiki Wiki: Notice: Only variable references should be returned by reference
Solution 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;
}


Article Details
Article ID: 203
Created On: 16 Aug 2005 01:15 AM

 Back
 Client Login  
Billing Email:
Password:
Remember Me:
 
 Search
 Article Options
Home | Submit a Ticket | Knowledgebase | News | Downloads
Language:


Hosting Awards
Hosting Plan Features
Frequently Asked Questions
All pages Copyright to 2002-2010 by Flux Services, Inc. All rights reserved.
All trademarks used are properties of their respective owners.