Subversion Repositories PHPX

Compare Revisions

Last modification

Ignore whitespace Rev 77 → Rev 76

/trunk/Db/Database.php
681,9 → 681,14
 
$result =& $this->_lastResult;
 
$result = ($fetchAll
? $stmt->fetchAll($fetch_style)
: $stmt);
if ($fetchAll)
{
$result = $stmt->fetchAll($fetch_style);
}
else
{
$result = $stmt;
}
 
if (defined('DEBUG') && DEBUG > 1)
{