diff options
-rw-r--r-- | it_dbi.class | 2 | ||||
-rw-r--r-- | it_dbi_postgres.class | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/it_dbi.class b/it_dbi.class index d864a1a..41054c7 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -932,7 +932,7 @@ function escape_name($str) */ static function escape_bool($bool) { - return $bool ? 'TRUE' : 'FALSE'; + return intval($bool) ? 'TRUE' : 'FALSE'; } /** diff --git a/it_dbi_postgres.class b/it_dbi_postgres.class index 82d57d2..e96a46d 100644 --- a/it_dbi_postgres.class +++ b/it_dbi_postgres.class @@ -56,7 +56,7 @@ function _tables($p = array()) static function _convertbool($v) { - return $v == 't' ? true : false; + return $v == 't' ? 1 : 0; } function _get_field_defs() |