mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 03:13:40 +01:00
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:
parent
1d7510f85e
commit
29cb0d1b85
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user