Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1470 → Rev 1471

/trunk/plugins/viathinksoft/adminPages/902_systemfile_check/checksums.json
Cannot display: file marked as a binary type.
svn:mime-type = application/json
/trunk/plugins/viathinksoft/database/oci/OIDplusQueryResultOci.class.php
87,7 → 87,7
$this->prefetchAll();
}
 
return count($this->prefetchedArray) + $this->countAlreadyFetched;
return count($this->prefetchedArray);
}
 
/**
/trunk/plugins/viathinksoft/database/pdo/OIDplusQueryResultPDO.class.php
86,7 → 86,7
// -1 can happen when PDO is connected via ODBC that is running a driver that does not support num_rows (e.g. Microsoft Access)
if ($ret === -1) {
$this->prefetchAll();
return count($this->prefetchedArray) + $this->countAlreadyFetched;
return count($this->prefetchedArray);
}
 
return $ret;