fix for postgres problem reported by m.buess-at-mgsoftech.com at the german list: boolean/logic values get not (correct) retrieved from the DB

This commit is contained in:
Ralf Becker 2007-12-15 18:01:47 +00:00
parent 1d7510f85e
commit 29cb0d1b85

View File

@ -42,6 +42,10 @@
$where,__LINE__,__FILE__);
while(($row = $this->db->row(true,'fm_'))) {
foreach(array('ic_validatecertificate','ic_enable_sieve','og_smtpauth') as $name)
{
$row[$name] = $this->db->from_bool($row[$name]);
}
$retValue[$row['id']] = $row;
}