Resolving yet more problems with booleans in postgres

This commit is contained in:
José Lorenzo Rodríguez 2010-10-24 20:01:33 -04:30
parent 1acb619e75
commit 2ec9a49f17

View file

@ -735,7 +735,7 @@ class DboPostgres extends DboSource {
if ($quote) {
$result = ($result) ? 'TRUE' : 'FALSE';
}
return $result;
return (int) $result;
}
/**