Bug #21037 ยป class.t3lib_db.php.patch
/var/www/vhosts/agam.org/httpdocs/typo3_src-4.2.6/t3lib/class.t3lib_db.php 2009-09-11 16:47:50.000000000 +0200 | ||
---|---|---|
* @return array Array with result rows.
|
||
*/
|
||
function sql_fetch_row($res) {
|
||
$this->debug_check_recordset($res);
|
||
return mysql_fetch_row($res);
|
||
if($res != null){
|
||
$this->debug_check_recordset($res);
|
||
return mysql_fetch_row($res);
|
||
}
|
||
else return null;
|
||
}
|
||
/**
|